Skip to content

Commit

Permalink
Fix nlargest and nsmallest Series support (modin-project#46) (service)
Browse files Browse the repository at this point in the history
Signed-off-by: Naren Krishna <[email protected]>
  • Loading branch information
naren-ponder authored and vnlitvinov committed Mar 16, 2023
1 parent 7751a20 commit 57870d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modin/core/execution/client/query_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,10 @@ def concat(self, axis, other, **kwargs):
self._service.concat(self._id, axis, other, **kwargs)
)

def sort_rows_by_column_values(self, columns, ascending=True, **kwargs):
def sort_rows_by_column_values(self, columns, ascending=True, handle_duplicates=None, **kwargs):
return self.__constructor__(
self._service.sort_rows_by_column_values(
self._id, columns, ascending=ascending, **kwargs
self._id, columns, ascending=ascending, handle_duplicates=None, **kwargs
)
)

Expand Down

0 comments on commit 57870d0

Please sign in to comment.