Skip to content

Commit f214c4f

Browse files
committed
DataFrame needs to be imported after NamedAgg to avoid a circular import
1 parent 2209202 commit f214c4f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/core/api.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
UInt64Dtype,
2424
)
2525
from pandas.core.construction import array
26-
from pandas.core.frame import DataFrame
26+
2727
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
2830
from pandas.core.index import (
2931
CategoricalIndex,
3032
DatetimeIndex,

0 commit comments

Comments
 (0)