We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30d91e6 commit 949265bCopy full SHA for 949265b
pandas/_typing.py
@@ -1,5 +1,6 @@
1
from __future__ import annotations
2
3
+from builtins import type as type_t # pyright: ignore[reportUnusedImport]
4
from collections.abc import (
5
Callable,
6
Hashable,
@@ -517,3 +518,5 @@ def closed(self) -> bool:
517
518
SequenceT = TypeVar("SequenceT", bound=Sequence[Hashable])
519
520
SliceType: TypeAlias = Hashable | None
521
+
522
+__all__ = ["type_t"]
0 commit comments