Skip to content

Commit 899e3fc

Browse files
suppress typing error with _metadata attribute
1 parent 151e3d1 commit 899e3fc

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
@@ -120,7 +120,7 @@ class StringDtype(StorageExtensionDtype):
120120
def na_value(self) -> libmissing.NAType | float: # type: ignore[override]
121121
return self._na_value
122122

123-
_metadata = ("storage", "_na_value")
123+
_metadata = ("storage", "_na_value") # type: ignore[assignment]
124124

125125
def __init__(
126126
self,

0 commit comments

Comments
 (0)