mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Use TypeAlias where possible for type aliases (#7630)
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
from typing import Any, Callable, Iterable, Iterator, Text, TypeVar
|
||||
from typing_extensions import TypedDict
|
||||
from typing_extensions import TypeAlias, TypedDict
|
||||
|
||||
_T = TypeVar("_T")
|
||||
_Callback = Callable[[str, _Result], Any]
|
||||
_Callback: TypeAlias = Callable[[str, _Result], Any]
|
||||
|
||||
class _Result(TypedDict):
|
||||
nmap: _ResultNmap
|
||||
|
||||
Reference in New Issue
Block a user