Skip to content

Commit b85bea3

Browse files
committed
blackify
1 parent 2ab8e3e commit b85bea3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pandas/core/base.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,14 @@ def hasnans(self):
10881088
return bool(isna(self).any())
10891089

10901090
def _reduce(
1091-
self, op, name: str, axis=0, skipna=True, numeric_only=None, filter_type=None, **kwds
1091+
self,
1092+
op,
1093+
name: str,
1094+
axis=0,
1095+
skipna=True,
1096+
numeric_only=None,
1097+
filter_type=None,
1098+
**kwds,
10921099
):
10931100
""" perform the reduction type operation if we can """
10941101
func = getattr(self, name, None)

0 commit comments

Comments
 (0)