This commit is contained in:
2026-02-28 14:04:03 -08:00
parent b6e4971caf
commit 818d0c0338
4 changed files with 27 additions and 15 deletions

View File

@@ -2092,7 +2092,7 @@ def expand_tag_lists(tags_set: Set[str]) -> Set[str]:
return tags_set
try:
with open(adjective_path, "r") as f:
with open(adjective_path, "r", encoding="utf-8") as f:
adjective_lists = json.load(f)
except Exception as e:
debug(f"Error loading adjective.json: {e}")