Skip to content

Commit 8587297

Browse files
try fix typing
1 parent 80489fe commit 8587297

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/core/arrays/string_.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ def na_value(self) -> libmissing.NAType | float: # type: ignore[override]
123123
_metadata = ("storage",)
124124

125125
def __init__(
126-
self, storage=None, na_value: libmissing.NAType | float = libmissing.NA
126+
self,
127+
storage: str | None = None,
128+
na_value: libmissing.NAType | float = libmissing.NA,
127129
) -> None:
128130
if not (
129131
na_value is libmissing.NA

0 commit comments

Comments
 (0)