Skip to content

Commit cac298b

Browse files
committed
remove type ignore
1 parent 4acf26b commit cac298b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/io/pyarrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2784,5 +2784,5 @@ def _get_field_from_arrow_table(arrow_table: pa.Table, field_path: str) -> pa.Ar
27842784

27852785
path_parts = field_path.split(".")
27862786
field_array = arrow_table[path_parts[0]]
2787-
field_array = pc.struct_field(field_array, path_parts[1:]) # type: ignore
2787+
field_array = pc.struct_field(field_array, path_parts[1:])
27882788
return field_array

0 commit comments

Comments
 (0)