Skip to content

Commit 0e02955

Browse files
committed
reintroduce, but remove mypy typing
1 parent e26206e commit 0e02955

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/nested_pandas/series/dtype.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ class NestedDtype(ExtensionDtype):
6565
_metadata = ("pyarrow_dtype",)
6666
"""Attributes to use as metadata for __eq__ and __hash__"""
6767

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]
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]
7272

7373
type = pd.DataFrame
7474
"""The type of the array's elements, always pd.DataFrame"""

0 commit comments

Comments
 (0)