Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Petersohn <[email protected]>
  • Loading branch information
devin-petersohn committed Nov 22, 2022
1 parent e48fdd4 commit 268f9da
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions modin/pandas/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -1194,9 +1194,21 @@ def groupby_on_multiple_columns(df, *args, **kwargs):

@_inherit_docstrings(pandas.core.groupby.SeriesGroupBy)
class SeriesGroupBy(SeriesGroupByCompat, DataFrameGroupBy):

def __init__(
self,
self,
df,
by,
axis,
level,
as_index,
sort,
group_keys,
squeeze,
idx_name,
drop,
**kwargs,
):
super(SeriesGroupBy, self).__init__(
df,
by,
axis,
Expand All @@ -1208,8 +1220,7 @@ def __init__(
idx_name,
drop,
**kwargs,
):
super(SeriesGroupBy, self).__init__(df, by, axis, level, as_index, sort, group_keys, squeeze, idx_name, drop, **kwargs)
)
self._squeeze = True

@property
Expand Down

0 comments on commit 268f9da

Please sign in to comment.