Skip to content

Commit

Permalink
REFACTOR-modin-project#2397: remove redundant assigment
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Nov 12, 2020
1 parent 45ef859 commit cdf5aeb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions modin/backends/base/query_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1412,8 +1412,6 @@ def groupby_agg(
by = by.columns[0] if drop else by.to_pandas().squeeze()
elif isinstance(by, type(self)):
by = list(by.columns)
else:
by = by
else:
by = by.to_pandas().squeeze() if isinstance(by, type(self)) else by

Expand Down

0 comments on commit cdf5aeb

Please sign in to comment.