From 87c717ebe8a3965656157b7323e601ab8d22b116 Mon Sep 17 00:00:00 2001 From: Luna Date: Thu, 1 May 2025 14:51:43 -0300 Subject: [PATCH 1/2] fix contributor tag category --- e621_api_cloner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/e621_api_cloner.py b/e621_api_cloner.py index 0daa756..d6f4472 100644 --- a/e621_api_cloner.py +++ b/e621_api_cloner.py @@ -97,6 +97,7 @@ class Post: class TagCategory(enum.IntEnum): GENERAL = 0 ARTIST = 1 + CONTRIBUTOR = 2 COPYRIGHT = 3 CHARACTER = 4 SPECIES = 5 @@ -108,6 +109,7 @@ class TagCategory(enum.IntEnum): return { self.GENERAL: "general", self.ARTIST: "artist", + self.CONTRIBUTOR: "contributor", self.COPYRIGHT: "copyright", self.CHARACTER: "character", self.METADATA: "meta", From 1f57ba4c955b51f3ffe5700e59ad98979d08ca42 Mon Sep 17 00:00:00 2001 From: Luna Date: Thu, 1 May 2025 14:51:56 -0300 Subject: [PATCH 2/2] update Quart --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e6e89ef..676b762 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ aiohttp==3.9.1 aiosqlite==0.19.0 -Quart==0.19.4 +Quart==0.19.9