Skip to content

Commit 8921a6c

Browse files
suppress typing error
1 parent 0fe6a1a commit 8921a6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/string_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def _get_common_dtype(self, dtypes: list[DtypeObj]) -> DtypeObj | None:
301301
# if both python and pyarrow storage -> priority to pyarrow
302302
storage = "pyarrow"
303303
else:
304-
storage = next(iter(storages))
304+
storage = next(iter(storages)) # type: ignore[assignment]
305305

306306
na_value: libmissing.NAType | float
307307
if len(na_values) == 2:

0 commit comments

Comments
 (0)