diff --git a/anki/utils.py b/anki/utils.py index 385c36455..b836b9e0e 100644 --- a/anki/utils.py +++ b/anki/utils.py @@ -422,7 +422,7 @@ class TimedLog: def versionWithBuild(): from anki import version try: - from anki.buildhash import build + from anki.buildhash import build # type: ignore except: build = "dev" return "%s (%s)" % (version, build)