Skip to content

Commit 96a40ed

Browse files
authored
Fixing RT02 pandas.Index.dropna and PR08 pandas.Index.fillna (#32359)
1 parent 015c1c1 commit 96a40ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/indexes/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2163,7 +2163,7 @@ def dropna(self, how="any"):
21632163
21642164
Returns
21652165
-------
2166-
valid : Index
2166+
Index
21672167
"""
21682168
if how not in ("any", "all"):
21692169
raise ValueError(f"invalid how option: {how}")

0 commit comments

Comments
 (0)