Skip to content

Commit 9885d49

Browse files
author
Ghasem Naddaf
committed
Add docstring for MultiIndex.fillna (fixes pandas-dev#18018)
1 parent 55fd070 commit 9885d49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/core/indexes/multi.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,9 @@ def duplicated(self, keep='first'):
811811

812812
@Appender(ibase._index_shared_docs['fillna'])
813813
def fillna(self, value=None, downcast=None):
814-
# isna is not implemented for MultiIndex
814+
"""
815+
isna is not implemented for MultiIndex
816+
"""
815817
raise NotImplementedError('isna is not defined for MultiIndex')
816818

817819
@Appender(_index_shared_docs['dropna'])

0 commit comments

Comments
 (0)