mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 19:32:13 +08:00
Use explicit "# type: str" instead of '' shortcut.
This commit is contained in:
@@ -8,7 +8,7 @@ ZIP_DEFLATED = 0
|
||||
def is_zipfile(filename: Union[str, BinaryIO]) -> bool: ...
|
||||
|
||||
class ZipInfo:
|
||||
filename = ''
|
||||
filename = ... # type: str
|
||||
date_time = ... # type: Tuple[int, int, int, int, int, int]
|
||||
compressed_size = 0
|
||||
file_size = 0
|
||||
|
||||
Reference in New Issue
Block a user