We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfd5d66 commit bb71ac8Copy full SHA for bb71ac8
pandas/core/util/hashing.py
@@ -14,10 +14,6 @@
14
import numpy as np
15
16
from pandas._libs.hashing import hash_object_array
17
-from pandas._typing import (
18
- ArrayLike,
19
- npt,
20
-)
21
22
from pandas.core.dtypes.common import is_list_like
23
from pandas.core.dtypes.generic import (
@@ -29,6 +25,11 @@
29
25
)
30
26
31
27
if TYPE_CHECKING:
28
+ from pandas._typing import (
+ ArrayLike,
+ npt,
+ )
32
+
33
from pandas import (
34
DataFrame,
35
Index,
pyproject.toml
@@ -301,7 +301,6 @@ exclude = [
301
"pandas/core/sorting.py" = ["TCH"]
302
"pandas/core/construction.py" = ["TCH"]
303
"pandas/core/missing.py" = ["TCH"]
304
-"pandas/core/util/*" = ["TCH"]
305
"pandas/core/reshape/*" = ["TCH"]
306
"pandas/core/strings/*" = ["TCH"]
307
"pandas/core/tools/*" = ["TCH"]
0 commit comments