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 e26206e commit 0e02955Copy full SHA for 0e02955
src/nested_pandas/series/dtype.py
@@ -65,10 +65,10 @@ class NestedDtype(ExtensionDtype):
65
_metadata = ("pyarrow_dtype",)
66
"""Attributes to use as metadata for __eq__ and __hash__"""
67
68
- #@property
69
- #def na_value(self) -> Type[pd.NA]: # type: ignore[valid-type]
70
- # """The missing value for this dtype"""
71
- # return pd.NA # type: ignore[return-value]
+ @property
+ def na_value(self): # -> Type[pd.NA]: # type: ignore[valid-type]
+ """The missing value for this dtype"""
+ return pd.NA # type: ignore[return-value]
72
73
type = pd.DataFrame
74
"""The type of the array's elements, always pd.DataFrame"""
0 commit comments