Skip to content

Commit

Permalink
REFACTOR-#2397: remove redundant assigment (#2398)
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev authored Nov 12, 2020
1 parent ba006fb commit e916874
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 e916874

Please sign in to comment.