Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
ttnghia committed Jul 11, 2022
1 parent a0440ec commit 9367c14
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions python/cudf/cudf/_lib/lists.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ def explode_outer(

def distinct(Column col, bool nulls_equal, bool nans_all_equal):
"""
nulls_equal == True indicates that libcudf should treat any two nulls as equal, and as unequal otherwise.
nans_all_equal == True indicates that libcudf should treat any two elements from {-nan, +nan} as equal,
and as unequal otherwise.
nulls_equal == True indicates that libcudf should treat any two nulls as
equal, and as unequal otherwise.
nans_all_equal == True indicates that libcudf should treat any two
elements from {-nan, +nan} as equal, and as unequal otherwise.
"""
cdef shared_ptr[lists_column_view] list_view = (
make_shared[lists_column_view](col.view())
Expand Down

0 comments on commit 9367c14

Please sign in to comment.