From 4fa1a1afcaa7d43d0a0dfd1b5459084f29d3e1aa Mon Sep 17 00:00:00 2001 From: Matthew Murray <41342305+Matt711@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:08:24 -0500 Subject: [PATCH] Update python/pylibcudf/pylibcudf/io/csv.pyx --- python/pylibcudf/pylibcudf/io/csv.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pylibcudf/pylibcudf/io/csv.pyx b/python/pylibcudf/pylibcudf/io/csv.pyx index 0c07e4ac037..8c56190d76d 100644 --- a/python/pylibcudf/pylibcudf/io/csv.pyx +++ b/python/pylibcudf/pylibcudf/io/csv.pyx @@ -650,7 +650,7 @@ cpdef TableWithMetadata read_csv( stream = Stream() cdef table_with_metadata c_result with nogil: - c_result = move(cpp_read_csv(options.c_obj), stream.view()) + c_result = move(cpp_read_csv(options.c_obj, stream.view())) cdef TableWithMetadata tbl_meta = TableWithMetadata.from_libcudf(c_result) return tbl_meta