mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
Use TypeAlias for type aliases where possible, part II (#7667)
This commit is contained in:
@@ -36,9 +36,9 @@ _converters: TypeAlias = dict[str, _converter]
|
||||
_T = TypeVar("_T")
|
||||
|
||||
if sys.version_info >= (3, 7):
|
||||
_Path = StrOrBytesPath
|
||||
_Path: TypeAlias = StrOrBytesPath
|
||||
else:
|
||||
_Path = StrPath
|
||||
_Path: TypeAlias = StrPath
|
||||
|
||||
DEFAULTSECT: Literal["DEFAULT"]
|
||||
MAX_INTERPOLATION_DEPTH: Literal[10]
|
||||
|
||||
Reference in New Issue
Block a user