From 96d753ce3f86400fd87087affb1edf505efdbd1b Mon Sep 17 00:00:00 2001 From: "Mads R. B. Kristensen" Date: Thu, 10 Oct 2024 11:39:44 +0200 Subject: [PATCH] cleanup --- python/pylibcudf/pylibcudf/contiguous_split.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pylibcudf/pylibcudf/contiguous_split.pyx b/python/pylibcudf/pylibcudf/contiguous_split.pyx index ca6bf8e9cf6..652b12fc09e 100644 --- a/python/pylibcudf/pylibcudf/contiguous_split.pyx +++ b/python/pylibcudf/pylibcudf/contiguous_split.pyx @@ -126,7 +126,7 @@ cpdef Table unpack(PackedColumns input): cdef table_view v = cpp_unpack(dereference(input.c_obj)) # Since `Table.from_table_view` doesn't support an arbitrary owning object, # we copy the table, see . - cdef unique_ptr[table] t = make_unique[table](v) # Copy + cdef unique_ptr[table] t = make_unique[table](v) return Table.from_libcudf(move(t)) @@ -164,5 +164,5 @@ cpdef Table unpack_from_memoryviews(memoryview metadata, gpumemoryview gpu_data) cdef table_view v = cpp_unpack(metadata_ptr, gpu_data_ptr) # Since `Table.from_table_view` doesn't support an arbitrary owning object, # we copy the table, see . - cdef unique_ptr[table] t = make_unique[table](v) # Copy + cdef unique_ptr[table] t = make_unique[table](v) return Table.from_libcudf(move(t))