Compare commits

...

2 Commits

Author SHA1 Message Date
matan2244
006d98ff27 Merge ceec25dc97 into 1dae34b0af 2026-03-31 05:12:19 +00:00
matan2244
ceec25dc97 Update tag_images_by_wd14_tagger.py
fixed --always_first_tags. the first tags were not added to the combined_tags in case they were not already in it.
2025-06-04 16:22:19 +03:00

View File

@@ -486,7 +486,7 @@ def main(args):
for tag in always_first_tags:
if tag in combined_tags:
combined_tags.remove(tag)
combined_tags.insert(0, tag)
combined_tags.insert(0, tag)
# 先頭のカンマを取る
if len(general_tag_text) > 0: