types.CodeType.co_filename isn't Optional. (#2639)

This commit is contained in:
Brandt Bucher
2018-11-27 20:53:05 -08:00
committed by Jelle Zijlstra
parent f9ba5402f8
commit 1857435e6f
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ class CodeType:
co_consts = ... # type: Tuple[Any, ...]
co_names = ... # type: Tuple[str, ...]
co_varnames = ... # type: Tuple[str, ...]
co_filename = ... # type: Optional[str]
co_filename = ... # type: str
co_name = ... # type: str
co_firstlineno = ... # type: int
co_lnotab = ... # type: bytes