Init taghistory before loading

This commit is contained in:
Sebastian Mohr 2025-02-01 13:26:23 +01:00
parent c81a2c9b18
commit a7ea60356b

View file

@ -99,6 +99,8 @@ class ImportState:
def __init__(self, readonly=False, path: Union[PathLike, None] = None):
self.path = path or config["statefile"].as_filename()
self.tagprogress = {}
self.taghistory = set()
self._open()
def __enter__(self):