Skip to content

Commit c6635fe

Browse files
committed
chore: dependencies update
1 parent 76ebca1 commit c6635fe

File tree

3 files changed

+223
-191
lines changed

3 files changed

+223
-191
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
repos:
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: 'v0.7.2'
4+
rev: 'v0.9.2'
55
hooks:
66
- id: ruff
77
args: [--fix, --exit-non-zero-on-fix]

tests/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def compare_dicts(a: dict, b: dict, ignore_keys: Iterable | None = None):
1111
if isinstance(v, dict):
1212
compare_dicts(v, b[k])
1313
continue
14-
assert b[k] == v, f"b[{k}] is '{b[k]}' != '{v}" ""
14+
assert b[k] == v, f"b[{k}] is '{b[k]}' != '{v}"

0 commit comments

Comments
 (0)