mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
typing_extensions: fix positional-only arg (#5359)
Co-authored-by: hauntsaninja <>
This commit is contained in:
@@ -43,7 +43,7 @@ def final(f: _F) -> _F: ...
|
||||
|
||||
Literal: _SpecialForm = ...
|
||||
|
||||
def IntVar(__name: str) -> Any: ... # returns a new TypeVar
|
||||
def IntVar(name: str) -> Any: ... # returns a new TypeVar
|
||||
|
||||
# Internal mypy fallback type for all typed dicts (does not exist at runtime)
|
||||
class _TypedDict(Mapping[str, object], metaclass=abc.ABCMeta):
|
||||
|
||||
Reference in New Issue
Block a user