ignore a spurious mypy error

This commit is contained in:
Damien Elmes 2021-10-28 19:19:37 +10:00
parent 49770f3159
commit 7e17f9e2ad

View File

@ -61,8 +61,11 @@ def packaged_build_setup() -> None:
_patch_pkgutil() _patch_pkgutil()
# escape hatch for debugging issues with packaged build startup # escape hatch for debugging issues with packaged build startup
if os.getenv("ANKI_STARTUP_REPL") and os.isatty(sys.stdin.fileno()): if os.getenv("ANKI_STARTUP_REPL"):
import code # mypy incorrectly thinks this does not exist on Windows
is_tty = os.isatty(sys.stdin.fileno()) # type: ignore
if is_tty:
import code
code.InteractiveConsole().interact() code.InteractiveConsole().interact()
sys.exit(0) sys.exit(0)