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 @@ -4507,20 +4507,20 @@ def _maybe_casted_values(index, labels=None):
4507
4507
# ----------------------------------------------------------------------
4508
4508
# Reindex-based selection methods
4509
4509
4510
- @Appender ( _shared_docs [ "isna" ] % _shared_doc_kwargs )
4510
+ @doc ( NDFrame . isna , klass = _shared_doc_kwargs [ "klass" ] )
4511
4511
def isna (self ) -> "DataFrame" :
4512
4512
result = self ._constructor (self ._data .isna (func = isna ))
4513
4513
return result .__finalize__ (self , method = "isna" )
4514
4514
4515
- @Appender ( _shared_docs [ "isna" ] % _shared_doc_kwargs )
4515
+ @doc ( NDFrame . isna , klass = _shared_doc_kwargs [ "klass" ] )
4516
4516
def isnull (self ) -> "DataFrame" :
4517
4517
return self .isna ()
4518
4518
4519
- @Appender ( _shared_docs [ "notna" ] % _shared_doc_kwargs )
4519
+ @doc ( NDFrame . notna , klass = _shared_doc_kwargs [ "klass" ] )
4520
4520
def notna (self ) -> "DataFrame" :
4521
4521
return ~ self .isna ()
4522
4522
4523
- @Appender ( _shared_docs [ "notna" ] % _shared_doc_kwargs )
4523
+ @doc ( NDFrame . notna , klass = _shared_doc_kwargs [ "klass" ] )
4524
4524
def notnull (self ) -> "DataFrame" :
4525
4525
return ~ self .isna ()
4526
4526
You can’t perform that action at this time.
0 commit comments