Skip to content

Commit 88ae599

Browse files
committed
pandas.core.common warning message
1 parent ef7db49 commit 88ae599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def wrapper(*args, **kwargs):
6060
warnings.warn("pandas.core.common.{t} is deprecated. "
6161
"These are not longer public API functions, "
6262
"but can be imported from "
63-
"pandas.core.typed.common.{t} instead".format(t=t),
63+
"pandas.api.types.{t} instead".format(t=t),
6464
DeprecationWarning, stacklevel=3)
6565
return getattr(common, t)(*args, **kwargs)
6666
return wrapper

0 commit comments

Comments
 (0)