File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -4014,16 +4014,14 @@ def fillna(
4014
4014
inplace = False ,
4015
4015
limit = None ,
4016
4016
downcast = None ,
4017
- ** kwargs ,
4018
- ):
4017
+ ) -> Optional ["DataFrame" ]:
4019
4018
return super ().fillna (
4020
4019
value = value ,
4021
4020
method = method ,
4022
4021
axis = axis ,
4023
4022
inplace = inplace ,
4024
4023
limit = limit ,
4025
4024
downcast = downcast ,
4026
- ** kwargs ,
4027
4025
)
4028
4026
4029
4027
@Appender (_shared_docs ["replace" ] % _shared_doc_kwargs )
Original file line number Diff line number Diff line change @@ -4005,16 +4005,14 @@ def fillna(
4005
4005
inplace = False ,
4006
4006
limit = None ,
4007
4007
downcast = None ,
4008
- ** kwargs ,
4009
- ):
4008
+ ) -> Optional ["Series" ]:
4010
4009
return super ().fillna (
4011
4010
value = value ,
4012
4011
method = method ,
4013
4012
axis = axis ,
4014
4013
inplace = inplace ,
4015
4014
limit = limit ,
4016
4015
downcast = downcast ,
4017
- ** kwargs ,
4018
4016
)
4019
4017
4020
4018
@Appender (generic ._shared_docs ["replace" ] % _shared_doc_kwargs )
You can’t perform that action at this time.
0 commit comments