mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Use TypeAlias where possible for type aliases (#7630)
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
import argparse
|
||||
import ast
|
||||
from typing import Any, Generic, Iterable, Iterator, TypeVar
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
FLAKE8_ERROR = tuple[int, int, str, type[Any]]
|
||||
FLAKE8_ERROR: TypeAlias = tuple[int, int, str, type[Any]]
|
||||
TConfig = TypeVar("TConfig") # noqa: Y001 # Name of the TypeVar matches the name at runtime
|
||||
|
||||
class Error:
|
||||
|
||||
Reference in New Issue
Block a user