Skip to content

Commit

Permalink
Update python/pylibcudf/pylibcudf/tests/conftest.py
Browse files Browse the repository at this point in the history
Co-authored-by: Bradley Dice <[email protected]>
  • Loading branch information
brandon-b-miller and bdice authored Oct 28, 2024
1 parent 46b27a1 commit 60e5c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pylibcudf/pylibcudf/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _type_to_str(typ):
if isinstance(typ, pa.ListType):
return f"list[{_type_to_str(typ.value_type)}]"
elif isinstance(typ, pa.StructType):
return f"struct[{', '.join([_type_to_str(typ.field(i).type) for i in range(typ.num_fields)])}]"
return f"struct[{', '.join(_type_to_str(typ.field(i).type) for i in range(typ.num_fields))}]"
else:
return str(typ)

Expand Down

0 comments on commit 60e5c4c

Please sign in to comment.