Skip to content

Commit f242311

Browse files
committed
Remove unnecessary blank lines
1 parent 63b5158 commit f242311

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/core/generic.py

-2
Original file line numberDiff line numberDiff line change
@@ -2856,7 +2856,6 @@ def clip_upper(self, threshold, axis=None):
28562856
subset = self.le(threshold, axis=axis) | isnull(self)
28572857
return self.where(subset, threshold, axis=axis)
28582858

2859-
28602859
def clip_lower(self, threshold, axis=None):
28612860
"""
28622861
Return copy of the input with values below given value(s) truncated
@@ -2881,7 +2880,6 @@ def clip_lower(self, threshold, axis=None):
28812880
subset = self.ge(threshold, axis=axis) | isnull(self)
28822881
return self.where(subset, threshold, axis=axis)
28832882

2884-
28852883
def groupby(self, by=None, axis=0, level=None, as_index=True, sort=True,
28862884
group_keys=True, squeeze=False):
28872885
"""

0 commit comments

Comments
 (0)