Skip to content

Commit a02cf70

Browse files
committed
mypy ignore
1 parent 79cab13 commit a02cf70

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/dtypes/dtypes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1606,7 +1606,8 @@ def _get_common_dtype(self, dtypes: list[DtypeObj]) -> DtypeObj | None:
16061606
return None
16071607

16081608
common_dtype = find_common_type(dtypes)
1609-
return NumpyEADtype(common_dtype)
1609+
# error: Argument 1 to "NumpyEADtype" has incompatible type
1610+
return NumpyEADtype(common_dtype) # type: ignore[arg-type]
16101611

16111612

16121613
class BaseMaskedDtype(ExtensionDtype):

0 commit comments

Comments
 (0)