Skip to content

Commit d9b2e2e

Browse files
committed
Format
1 parent eb8c0a8 commit d9b2e2e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Lib/email/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,8 @@ def decode_params(params):
417417
for name, continuations in rfc2231_params.items():
418418
value = []
419419
extended = False
420-
# Sort by number, treating None as 0 if there is no 0, ignore it if there is already a 0.
420+
# Sort by number, treating None as 0 if there is no 0,
421+
# and ignore it if there is already a 0.
421422
has_zero = any(x[0] == 0 for x in continuations)
422423
if has_zero:
423424
continuations = [x for x in continuations if x[0] is not None]

0 commit comments

Comments
 (0)