Skip to content

Commit 7c7ce5c

Browse files
authored
[pre-commit.ci] pre-commit autoupdate (#2585)
2 parents 64f0eb4 + 19ae03e commit 7c7ce5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repos:
2121
args: ["--application-directories", "examples"]
2222
additional_dependencies: ["setuptools>60.9"]
2323
- repo: https://github.com/psf/black
24-
rev: 22.12.0
24+
rev: 23.1.0
2525
hooks:
2626
- id: black
2727
- repo: https://github.com/PyCQA/flake8

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)