File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -4014,16 +4014,14 @@ def fillna(
40144014 inplace = False ,
40154015 limit = None ,
40164016 downcast = None ,
4017- ** kwargs ,
4018- ):
4017+ ) -> Optional ["DataFrame" ]:
40194018 return super ().fillna (
40204019 value = value ,
40214020 method = method ,
40224021 axis = axis ,
40234022 inplace = inplace ,
40244023 limit = limit ,
40254024 downcast = downcast ,
4026- ** kwargs ,
40274025 )
40284026
40294027 @Appender (_shared_docs ["replace" ] % _shared_doc_kwargs )
Original file line number Diff line number Diff line change @@ -4005,16 +4005,14 @@ def fillna(
40054005 inplace = False ,
40064006 limit = None ,
40074007 downcast = None ,
4008- ** kwargs ,
4009- ):
4008+ ) -> Optional ["Series" ]:
40104009 return super ().fillna (
40114010 value = value ,
40124011 method = method ,
40134012 axis = axis ,
40144013 inplace = inplace ,
40154014 limit = limit ,
40164015 downcast = downcast ,
4017- ** kwargs ,
40184016 )
40194017
40204018 @Appender (generic ._shared_docs ["replace" ] % _shared_doc_kwargs )
You can’t perform that action at this time.
0 commit comments