Skip to content

Commit b38b200

Browse files
committed
run pre-commit
1 parent 56b4e2b commit b38b200

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/core/series.py

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

61886188
def isnull(self) -> Series:
61896189
"""
6190-
Series.isnull is an alias for Series.isna.
6191-
6190+
Series.isnull is an alias for Series.isna.
6191+
61926192
Detect missing values.
61936193
61946194
Return a boolean same-sized object indicating if the values are NA.
@@ -6329,8 +6329,8 @@ def notna(self) -> Series:
63296329

63306330
def notnull(self) -> Series:
63316331
"""
6332-
Series.notnull is an alias for Series.notna.
6333-
6332+
Series.notnull is an alias for Series.notna.
6333+
63346334
Detect existing (non-missing) values.
63356335
63366336
Return a boolean same-sized object indicating if the values are not NA.

0 commit comments

Comments
 (0)