mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Enable flake8-pyi's Y037 (#9686)
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
from _typeshed import Self
|
||||
from queue import Queue
|
||||
from types import TracebackType
|
||||
from typing import Any, Union
|
||||
from typing import Any
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
__all__ = ["Client", "Listener", "Pipe"]
|
||||
|
||||
families: list[None]
|
||||
|
||||
_Address: TypeAlias = Union[str, tuple[str, int]]
|
||||
_Address: TypeAlias = str | tuple[str, int]
|
||||
|
||||
class Connection:
|
||||
_in: Any
|
||||
|
||||
Reference in New Issue
Block a user