Skip to content

Commit 272ba72

Browse files
committed
address CI issues in isnull and notnull
1 parent b38b200 commit 272ba72

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/core/series.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6187,6 +6187,7 @@ def isna(self) -> Series:
61876187

61886188
def isnull(self) -> Series:
61896189
"""
6190+
61906191
Series.isnull is an alias for Series.isna.
61916192
61926193
Detect missing values.
@@ -6329,6 +6330,7 @@ def notna(self) -> Series:
63296330

63306331
def notnull(self) -> Series:
63316332
"""
6333+
63326334
Series.notnull is an alias for Series.notna.
63336335
63346336
Detect existing (non-missing) values.

0 commit comments

Comments
 (0)