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):
47384738 # ----------------------------------------------------------------------
47394739 # Reindex-based selection methods
47404740
4741- @Appender (_shared_docs ["isna" ] % _shared_doc_kwargs )
4741+ @doc (_shared_docs ["isna" ], ** _shared_doc_kwargs )
47424742 def isna (self ) -> "DataFrame" :
47434743 result = self ._constructor (self ._data .isna (func = isna ))
47444744 return result .__finalize__ (self , method = "isna" )
47454745
4746- @Appender (_shared_docs ["isna" ] % _shared_doc_kwargs )
4746+ @doc (_shared_docs ["isna" ], ** _shared_doc_kwargs )
47474747 def isnull (self ) -> "DataFrame" :
47484748 return self .isna ()
47494749
4750- @Appender (_shared_docs ["notna" ] % _shared_doc_kwargs )
4750+ @doc (_shared_docs ["notna" ], ** _shared_doc_kwargs )
47514751 def notna (self ) -> "DataFrame" :
47524752 return ~ self .isna ()
47534753
4754- @Appender (_shared_docs ["notna" ] % _shared_doc_kwargs )
4754+ @doc (_shared_docs ["notna" ], ** _shared_doc_kwargs )
47554755 def notnull (self ) -> "DataFrame" :
47564756 return ~ self .isna ()
47574757
You can’t perform that action at this time.
0 commit comments