Skip to content

Commit 54c8406

Browse files
committed
pass errors=None to avoid failing in the categorical case
1 parent 8c128a9 commit 54c8406

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3382,7 +3382,7 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,
33823382

33833383
@Appender(_shared_docs['fillna'] % _shared_doc_kwargs)
33843384
def fillna(self, value=None, method=None, axis=None, inplace=False,
3385-
limit=None, downcast=None, errors='coerce'):
3385+
limit=None, downcast=None, errors=None):
33863386
inplace = validate_bool_kwarg(inplace, 'inplace')
33873387

33883388
try:

0 commit comments

Comments
 (0)