We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3acc53a commit 96de62bCopy full SHA for 96de62b
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