Skip to content

Commit

Permalink
Update python/pylibcudf/pylibcudf/io/csv.pyx
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 authored Dec 18, 2024
1 parent b06dabc commit 4fa1a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pylibcudf/pylibcudf/io/csv.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4fa1a1a

Please sign in to comment.