another pylint fix

This commit is contained in:
Damien Elmes 2019-12-23 12:06:26 +10:00
parent f2a7e4685c
commit eb03b8b727

View file

@ -498,7 +498,7 @@ def versionWithBuild() -> str:
from anki import version
try:
from anki.buildhash import build # type: ignore # pylint: disable=import-error
from anki.buildhash import build # type: ignore # pylint: disable=import-error,no-name-in-module
except:
build = "dev"
return "%s (%s)" % (version, build)