mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Use PEP 585 syntax wherever possible (#6717)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
from typing import Any, Sequence, Tuple, TypeVar
|
||||
from typing import Any, Sequence, TypeVar
|
||||
|
||||
_T = TypeVar("_T")
|
||||
_Mismatch = Tuple[_T, _T, int]
|
||||
_Mismatch = tuple[_T, _T, int]
|
||||
|
||||
_MAX_LENGTH: int
|
||||
_PLACEHOLDER_LEN: int
|
||||
|
||||
Reference in New Issue
Block a user