mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 13:34:58 +08:00
Use TypeAlias where possible for type aliases (#7630)
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
import sys
|
||||
from _typeshed import FileDescriptorLike
|
||||
from typing import Any
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
if sys.platform != "win32":
|
||||
_Attr = list[int | list[bytes | int]]
|
||||
_Attr: TypeAlias = list[int | list[bytes | int]]
|
||||
|
||||
# TODO constants not really documented
|
||||
B0: int
|
||||
|
||||
Reference in New Issue
Block a user