We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 350afbb commit a09a5e0Copy full SHA for a09a5e0
mypy/semanal.py
@@ -190,9 +190,11 @@ class SemanticAnalyzer(NodeVisitor):
190
imports = None # type: Set[str] # Imported modules (during phase 2 analysis)
191
errors = None # type: Errors # Keeps track of generated errors
192
193
- def __init__(self, lib_path: List[str], errors: Errors,
194
- pyversion: Tuple[int, int] = defaults.PYTHON3_VERSION,
195
- check_untyped_defs: bool = False) -> None:
+ def __init__(self,
+ lib_path: List[str],
+ errors: Errors,
196
+ pyversion: Tuple[int, int],
197
+ check_untyped_defs: bool) -> None:
198
"""Construct semantic analyzer.
199
200
Use lib_path to search for modules, and report analysis errors
0 commit comments