mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Use TypeAlias for type aliases where possible, part II (#7667)
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
from _typeshed import Self
|
||||
from collections.abc import Callable, Generator, Iterable, Iterator, Sequence
|
||||
from typing import Any, overload
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
_NDArray = Any # FIXME: no typings for numpy arrays
|
||||
_NDArray: TypeAlias = Any # FIXME: no typings for numpy arrays
|
||||
|
||||
class _JackPositionT: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user