Skip to content

Commit 254af5f

Browse files
committed
LINT fixup
1 parent aa781ad commit 254af5f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/base.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,8 @@ def _aggregate_multiple_funcs(self, arg, _level, _axis):
592592
else:
593593
for index, col in enumerate(obj):
594594
try:
595-
colg = self._gotitem(col, ndim=1, subset=obj.iloc[:, [index]])
595+
colg = self._gotitem(col, ndim=1,
596+
subset=obj.iloc[:, [index]])
596597
results.append(colg.aggregate(arg))
597598
keys.append(col)
598599
except (TypeError, DataError):

0 commit comments

Comments
 (0)