Run mypy on the test cases and test scripts (#7746)

This commit is contained in:
Alex Waygood
2022-04-30 06:39:07 -06:00
committed by GitHub
parent 9d450cb50c
commit 8b118b236d
3 changed files with 138 additions and 58 deletions

View File

@@ -19,8 +19,8 @@ import sys
import traceback
from collections.abc import Sequence
from pytype import config as pytype_config, load_pytd
from pytype.pytd import typeshed
from pytype import config as pytype_config, load_pytd # type: ignore[import]
from pytype.pytd import typeshed # type: ignore[import]
TYPESHED_SUBDIRS = ["stdlib", "stubs"]
TYPESHED_HOME = "TYPESHED_HOME"