Skip to content

Commit

Permalink
blacken again sorry
Browse files Browse the repository at this point in the history
  • Loading branch information
wimglenn committed Nov 23, 2023
1 parent 6af64dd commit b08ed21
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,9 @@ def _handle_field(self, field):
s = r"((\d{1,2}|%s)[-/]\d{1,2}[-/]\d{4})(\s+%s)?%s?%s?"
s %= (ALL_MONTHS_PAT, TIME_PAT, AM_PAT, TZ_PAT)
n = self._group_index
conv[group] = partial(date_convert, mdy=n + 1, hms=n + 5, am=n + 8, tz=n + 9)
conv[group] = partial(
date_convert, mdy=n + 1, hms=n + 5, am=n + 8, tz=n + 9
)
self._group_index += 9
elif type == "te":
# this will allow microseconds through if they're present, but meh
Expand Down

0 comments on commit b08ed21

Please sign in to comment.