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 @@ -4477,20 +4477,20 @@ def _maybe_casted_values(index, labels=None):
4477
4477
# ----------------------------------------------------------------------
4478
4478
# Reindex-based selection methods
4479
4479
4480
- @Appender ( _shared_docs [ "isna" ] % _shared_doc_kwargs )
4480
+ @doc ( NDFrame . isna , klass = _shared_doc_kwargs [ "klass" ] )
4481
4481
def isna (self ) -> "DataFrame" :
4482
4482
result = self ._constructor (self ._data .isna (func = isna ))
4483
4483
return result .__finalize__ (self )
4484
4484
4485
- @Appender ( _shared_docs [ "isna" ] % _shared_doc_kwargs )
4485
+ @doc ( NDFrame . isna , klass = _shared_doc_kwargs [ "klass" ] )
4486
4486
def isnull (self ) -> "DataFrame" :
4487
4487
return self .isna ()
4488
4488
4489
- @Appender ( _shared_docs [ "notna" ] % _shared_doc_kwargs )
4489
+ @doc ( NDFrame . notna , klass = _shared_doc_kwargs [ "klass" ] )
4490
4490
def notna (self ) -> "DataFrame" :
4491
4491
return ~ self .isna ()
4492
4492
4493
- @Appender ( _shared_docs [ "notna" ] % _shared_doc_kwargs )
4493
+ @doc ( NDFrame . notna , klass = _shared_doc_kwargs [ "klass" ] )
4494
4494
def notnull (self ) -> "DataFrame" :
4495
4495
return ~ self .isna ()
4496
4496
You can’t perform that action at this time.
0 commit comments