Fix removing disabled tags

This commit is contained in:
Timmy Welch 2025-03-18 21:24:08 -07:00
parent ea945a6b2a
commit 3dad7c18f8
2 changed files with 4 additions and 2 deletions

View File

@ -362,7 +362,7 @@ class ComicArchive:
length = digest.name.rpartition("_")[2]
if not length.isdigit():
length = "128"
md.original_hash = FileHash(digest.name, digest.hexdigest(int(length) // 8))
md.original_hash = FileHash(digest.name, digest.hexdigest(int(length) // 8)) # type: ignore[call-arg]
else:
md.original_hash = FileHash(digest.name, digest.hexdigest())
except Exception:

View File

@ -313,7 +313,9 @@ def validate_commandline_settings(config: settngs.Config[ct_ns], parser: settngs
disabled_tags = {tag for tag in comicarchive.tags if not comicarchive.tags[tag].enabled}
to_be_removed = (
set(config[0].Runtime_Options__tags_read).union(config[0].Runtime_Options__tags_write).union(disabled_tags)
set(config[0].Runtime_Options__tags_read)
.union(config[0].Runtime_Options__tags_write)
.intersection(disabled_tags)
)
if to_be_removed:
logger.debug("Removing disabled tags: %s", to_be_removed)