Skip to content

Commit a8b5c8c

Browse files
author
MarcoGorelli
committed
revert change
1 parent 2eda403 commit a8b5c8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/tslibs/parsing.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ cdef parse_datetime_string_with_reso(
443443
parsed, reso = dateutil_parse(date_string, _DEFAULT_DATETIME,
444444
dayfirst=dayfirst, yearfirst=yearfirst,
445445
ignoretz=False, tzinfos=None)
446-
except (ValueError, OverflowError, TypeError) as err:
446+
except (ValueError, OverflowError) as err:
447447
# TODO: allow raise of errors within instead
448448
raise DateParseError(err)
449449
if parsed is None:

0 commit comments

Comments
 (0)