Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed Sep 16, 2021
1 parent 13e3e14 commit 2c8110b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/cudf/cudf/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,9 @@ def _sort_index(
]
else:
labels = [self.index._get_level_label(level)]
midx_data = cudf.DataFrame._from_data(self.index._data.select_by_label(labels))
midx_data = cudf.DataFrame._from_data(
self.index._data.select_by_label(labels)
)
inds = midx_data.argsort(
ascending=ascending, na_position=na_position
)
Expand Down

0 comments on commit 2c8110b

Please sign in to comment.