Skip to content

Commit 03a9ac4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cac6c76 commit 03a9ac4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

feedparser/datetimes/rfc822.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def _parse_date_rfc822(date):
133133
time_parts = parts[3].split(":")
134134
time_parts.extend(("0",) * (3 - len(time_parts)))
135135
try:
136-
(hour, minute, second) = (int(i) for i in time_parts)
136+
hour, minute, second = (int(i) for i in time_parts)
137137
except ValueError:
138138
return None
139139

0 commit comments

Comments
 (0)