Skip to content

Commit e5e3ef1

Browse files
committed
fix presubmit
1 parent c767662 commit e5e3ef1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/operations/blob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def metadata(self) -> bigframes.series.Series:
8484
# Check if it's a struct series from a verbose operation
8585
if dtypes.is_struct_like(series_to_check.dtype):
8686
pyarrow_dtype = series_to_check.dtype.pyarrow_dtype
87-
if "content" in pyarrow_dtype.names:
87+
if "content" in [field.name for field in pyarrow_dtype]:
8888
content_field_type = pyarrow_dtype.field("content").type
8989
content_bf_type = dtypes.arrow_dtype_to_bigframes_dtype(
9090
content_field_type

0 commit comments

Comments
 (0)