Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#2585)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Feb 7, 2023
2 parents 64f0eb4 + 19ae03e commit 7c7ce5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -21,7 +21,7 @@ repos:
args: ["--application-directories", "examples"]
additional_dependencies: ["setuptools>60.9"]
- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.1.0
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
Expand Down
2 changes: 1 addition & 1 deletion src/werkzeug/datastructures.py
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 7c7ce5c

Please sign in to comment.