Skip to content

Commit 7495e9a

Browse files
ghasemnaddafjorisvandenbossche
authored andcommitted
DOC: add docstring for MultiIndex.fillna (#18018) (#18269)
1 parent 7f4c960 commit 7495e9a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/core/indexes/multi.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -820,9 +820,10 @@ def duplicated(self, keep='first'):
820820

821821
return duplicated_int64(ids, keep)
822822

823-
@Appender(ibase._index_shared_docs['fillna'])
824823
def fillna(self, value=None, downcast=None):
825-
# isna is not implemented for MultiIndex
824+
"""
825+
fillna is not implemented for MultiIndex
826+
"""
826827
raise NotImplementedError('isna is not defined for MultiIndex')
827828

828829
@Appender(_index_shared_docs['dropna'])

0 commit comments

Comments
 (0)