We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2209202 commit f214c4fCopy full SHA for f214c4f
pandas/core/api.py
@@ -23,8 +23,10 @@
23
UInt64Dtype,
24
)
25
from pandas.core.construction import array
26
-from pandas.core.frame import DataFrame
+
27
from pandas.core.groupby import Grouper, NamedAgg
28
+# DataFrame needs to be imported after NamedAgg to avoid a circular import
29
+from pandas.core.frame import DataFrame # isort:skip
30
from pandas.core.index import (
31
CategoricalIndex,
32
DatetimeIndex,
0 commit comments