We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b8e6ae commit 430dd44Copy full SHA for 430dd44
pandas/core/arrays/string_.py
@@ -218,7 +218,7 @@ def __eq__(self, other: object) -> bool:
218
return self.storage == other.storage and self.na_value is other.na_value
219
return False
220
221
- def __setstate__(self, state):
+ def __setstate__(self, state: MutableMapping[str, Any]) -> None:
222
self.storage = state.pop("storage", "python")
223
self._na_value = state.pop("_na_value", libmissing.NA)
224
0 commit comments