Skip to content

Commit 19ae03e

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/werkzeug/datastructures.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ def __setitem__(self, key, value):
12261226
(_unicodify_header_value(k), _unicodify_header_value(v))
12271227
for (k, v) in value
12281228
]
1229-
for (_, v) in value:
1229+
for _, v in value:
12301230
self._validate_value(v)
12311231
if isinstance(key, int):
12321232
self._list[key] = value[0]

0 commit comments

Comments
 (0)