Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 7, 2023
1 parent a83d3b8 commit 19ae03e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/werkzeug/datastructures.py
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ def __setitem__(self, key, value):
(_unicodify_header_value(k), _unicodify_header_value(v))
for (k, v) in value
]
for (_, v) in value:
for _, v in value:
self._validate_value(v)
if isinstance(key, int):
self._list[key] = value[0]
Expand Down

0 comments on commit 19ae03e

Please sign in to comment.