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