Skip to content

Commit ba345ad

Browse files
author
wdyy20041223
committed
DOC: Inline docstrings in pandas\core\generic.py file for methods: isna,notna,isnull
1 parent 2014e62 commit ba345ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6183,7 +6183,7 @@ def isna(self) -> Series:
61836183
return NDFrame.isna(self)
61846184

61856185
# error: Cannot determine type of 'isna'
6186-
@doc(NDFrame.isna, klass=_shared_doc_kwargs["klass"]) # type: ignore[has-type]
6186+
@doc(NDFrame.isna, klass=_shared_doc_kwargs["klass"])
61876187
def isnull(self) -> Series:
61886188
"""
61896189
Series.isnull is an alias for Series.isna.
@@ -6260,7 +6260,7 @@ def notna(self) -> Series:
62606260
return super().notna()
62616261

62626262
# error: Cannot determine type of 'notna'
6263-
@doc(NDFrame.notna, klass=_shared_doc_kwargs["klass"]) # type: ignore[has-type]
6263+
@doc(NDFrame.notna, klass=_shared_doc_kwargs["klass"])
62646264
def notnull(self) -> Series:
62656265
"""
62666266
Series.notnull is an alias for Series.notna.

0 commit comments

Comments
 (0)