Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed Feb 13, 2025
1 parent d8dac32 commit d21c372
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -5701,7 +5701,7 @@ def to_arrow(self, preserve_index=None) -> pa.Table:
a: [[1,2,3]]
b: [[4,5,6]]
"""
# import pdb;pdb.set_trace()

data = self
index_descr: Sequence[dict[str, Any]] | Sequence[str] = []
write_index = preserve_index is not False
Expand Down
1 change: 0 additions & 1 deletion python/cudf/cudf/tests/test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,6 @@ def test_dataframe_list_round_trip():
metadata=metadata,
)

# Create a dummy table with the defined schema and some data
data = {"text": ["asd", "pqr"], "list_col": [[1, 2, 3], [4, 5]]}

table = pa.Table.from_pydict(data, schema=schema)
Expand Down

0 comments on commit d21c372

Please sign in to comment.