From 9367c14cbaaaf4e3aeb918222e29bf39831fdf74 Mon Sep 17 00:00:00 2001 From: Nghia Truong Date: Mon, 11 Jul 2022 11:59:47 -0700 Subject: [PATCH] Fix style --- python/cudf/cudf/_lib/lists.pyx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/python/cudf/cudf/_lib/lists.pyx b/python/cudf/cudf/_lib/lists.pyx index d7e171b8860..4dc8266febf 100644 --- a/python/cudf/cudf/_lib/lists.pyx +++ b/python/cudf/cudf/_lib/lists.pyx @@ -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())