mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 11:07:17 +08:00
Use TypeAlias where possible for type aliases (#7630)
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
from _typeshed import StrOrBytesPath, StrPath
|
||||
from collections.abc import Iterator
|
||||
from typing import Any
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
from pygments.lexer import Lexer, LexerMeta
|
||||
|
||||
_OpenFile = StrOrBytesPath | int # copy/pasted from builtins.pyi
|
||||
_OpenFile: TypeAlias = StrOrBytesPath | int # copy/pasted from builtins.pyi
|
||||
|
||||
def get_all_lexers() -> Iterator[tuple[str, tuple[str, ...], tuple[str, ...], tuple[str, ...]]]: ...
|
||||
def find_lexer_class(name: str) -> LexerMeta | None: ...
|
||||
|
||||
Reference in New Issue
Block a user