Skip to content

Commit

Permalink
pass errors=None to avoid failing in the categorical case
Browse files Browse the repository at this point in the history
  • Loading branch information
ResidentMario committed Apr 2, 2017
1 parent 8c128a9 commit 54c8406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3382,7 +3382,7 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,

@Appender(_shared_docs['fillna'] % _shared_doc_kwargs)
def fillna(self, value=None, method=None, axis=None, inplace=False,
limit=None, downcast=None, errors='coerce'):
limit=None, downcast=None, errors=None):
inplace = validate_bool_kwarg(inplace, 'inplace')

try:
Expand Down

0 comments on commit 54c8406

Please sign in to comment.