mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Use explicit "# type: str" instead of '' shortcut.
This commit is contained in:
@@ -9,7 +9,7 @@ class Enum:
|
||||
def __hash__(self) -> Any: ...
|
||||
def __reduce_ex__(self, proto: Any) -> Any: ...
|
||||
|
||||
name = ''
|
||||
name = ... # type: str
|
||||
value = None # type: Any
|
||||
|
||||
class IntEnum(int, Enum): ...
|
||||
|
||||
Reference in New Issue
Block a user