File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4738,20 +4738,20 @@ def _maybe_casted_values(index, labels=None):
4738
4738
# ----------------------------------------------------------------------
4739
4739
# Reindex-based selection methods
4740
4740
4741
- @Appender (_shared_docs ["isna" ] % _shared_doc_kwargs )
4741
+ @doc (_shared_docs ["isna" ], ** _shared_doc_kwargs )
4742
4742
def isna (self ) -> "DataFrame" :
4743
4743
result = self ._constructor (self ._data .isna (func = isna ))
4744
4744
return result .__finalize__ (self , method = "isna" )
4745
4745
4746
- @Appender (_shared_docs ["isna" ] % _shared_doc_kwargs )
4746
+ @doc (_shared_docs ["isna" ], ** _shared_doc_kwargs )
4747
4747
def isnull (self ) -> "DataFrame" :
4748
4748
return self .isna ()
4749
4749
4750
- @Appender (_shared_docs ["notna" ] % _shared_doc_kwargs )
4750
+ @doc (_shared_docs ["notna" ], ** _shared_doc_kwargs )
4751
4751
def notna (self ) -> "DataFrame" :
4752
4752
return ~ self .isna ()
4753
4753
4754
- @Appender (_shared_docs ["notna" ] % _shared_doc_kwargs )
4754
+ @doc (_shared_docs ["notna" ], ** _shared_doc_kwargs )
4755
4755
def notnull (self ) -> "DataFrame" :
4756
4756
return ~ self .isna ()
4757
4757
You can’t perform that action at this time.
0 commit comments