Skip to content

Commit 12ec80f

Browse files
committed
pass errors=None to avoid failing in the categorical case
1 parent 5a77baa commit 12ec80f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3443,7 +3443,7 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,
34433443

34443444
@Appender(_shared_docs['fillna'] % _shared_doc_kwargs)
34453445
def fillna(self, value=None, method=None, axis=None, inplace=False,
3446-
limit=None, downcast=None, errors='coerce'):
3446+
limit=None, downcast=None, errors=None):
34473447
inplace = validate_bool_kwarg(inplace, 'inplace')
34483448

34493449
try:

0 commit comments

Comments
 (0)