Skip to content

Commit 949265b

Browse files
committed
add 2 more TypeAlias
1 parent 30d91e6 commit 949265b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/_typing.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
from builtins import type as type_t # pyright: ignore[reportUnusedImport]
34
from collections.abc import (
45
Callable,
56
Hashable,
@@ -517,3 +518,5 @@ def closed(self) -> bool:
517518
SequenceT = TypeVar("SequenceT", bound=Sequence[Hashable])
518519

519520
SliceType: TypeAlias = Hashable | None
521+
522+
__all__ = ["type_t"]

0 commit comments

Comments
 (0)