File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ def __eq__(self, other: object) -> bool:
228228
229229 def __setstate__ (self , state : MutableMapping [str , Any ]) -> None :
230230 # back-compat for pandas < 2.3, where na_value did not yet exist
231- self .storage = state .pop ("storage" , "python" )
231+ self ._storage = state .pop ("storage" , "python" )
232232 self ._na_value = state .pop ("_na_value" , libmissing .NA )
233233
234234 def __hash__ (self ) -> int :
@@ -323,7 +323,7 @@ def _get_common_dtype(self, dtypes: list[DtypeObj]) -> DtypeObj | None:
323323 # if both python and pyarrow storage -> priority to pyarrow
324324 storage = "pyarrow"
325325 else :
326- storage = next (iter (storages )) # type: ignore[assignment]
326+ storage = next (iter (storages ))
327327
328328 na_value : libmissing .NAType | float
329329 if len (na_values ) == 2 :
You can’t perform that action at this time.
0 commit comments