Skip to content

Commit

Permalink
fix failure
Browse files Browse the repository at this point in the history
  • Loading branch information
lithomas1 committed Jul 5, 2024
1 parent 929f59f commit b1ffc38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/utils.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ cdef data_from_pylibcudf_io(tbl_with_meta):
"""
return _data_from_columns(
columns=[Column.from_pylibcudf(plc) for plc in tbl_with_meta.columns],
column_names=tbl_with_meta.column_names,
column_names=tbl_with_meta.column_names(include_children=False),
index_names=None
)

Expand Down

0 comments on commit b1ffc38

Please sign in to comment.