Skip to content

Commit 88437b8

Browse files
committed
address CI issues
1 parent 4d940da commit 88437b8

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

pandas/core/series.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5113,7 +5113,6 @@ def set_axis(
51135113
return super().set_axis(labels, axis=axis, copy=copy)
51145114

51155115
# error: Cannot determine type of 'reindex'
5116-
# type: ignore[has-type]
51175116

51185117
def reindex( # type: ignore[override]
51195118
self,
@@ -5650,8 +5649,9 @@ def info(
56505649
Print a concise summary of a Series.
56515650
56525651
This method prints information about a Series including
5653-
the index dtype"", non-NA values and memory usage.
5654-
"\n.. versionadded:: 1.4.0\n"\
5652+
the index dtype, non-NA values and memory usage.
5653+
5654+
.. versionadded:: 1.4.0
56555655
56565656
Parameters
56575657
----------
@@ -6110,7 +6110,6 @@ def case_when(
61106110
return default
61116111

61126112
# error: Cannot determine type of 'isna'
6113-
# type: ignore[has-type]
61146113

61156114
def isna(self) -> Series:
61166115
"""
@@ -6181,10 +6180,10 @@ def isna(self) -> Series:
61816180
return NDFrame.isna(self)
61826181

61836182
# error: Cannot determine type of 'isna'
6184-
# type: ignore[has-type]
61856183

61866184
def isnull(self) -> Series:
61876185
"""
6186+
61886187
Series.isnull is an alias for Series.isna.
61896188
61906189
Detect missing values.
@@ -6254,7 +6253,6 @@ def isnull(self) -> Series:
62546253
return super().isnull()
62556254

62566255
# error: Cannot determine type of 'notna'
6257-
# type: ignore[has-type]
62586256

62596257
def notna(self) -> Series:
62606258
"""
@@ -6325,10 +6323,10 @@ def notna(self) -> Series:
63256323
return super().notna()
63266324

63276325
# error: Cannot determine type of 'notna'
6328-
# type: ignore[has-type]
63296326

63306327
def notnull(self) -> Series:
63316328
"""
6329+
63326330
Series.notnull is an alias for Series.notna.
63336331
63346332
Detect existing (non-missing) values.

0 commit comments

Comments
 (0)