Skip to content

Commit 613f4db

Browse files
authoredFeb 3, 2025·
Pre-commit autoupdate
1 parent 3f767d7 commit 613f4db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.6.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-yaml
66
- id: end-of-file-fixer
77
- id: trailing-whitespace
88
- id: check-toml
99
- repo: https://github.com/quantco/pre-commit-mirrors-ruff
10-
rev: 0.4.3
10+
rev: 0.9.4
1111
hooks:
1212
- id: ruff-conda
1313
- id: ruff-format-conda
1414
- repo: https://github.com/quantco/pre-commit-mirrors-mypy
15-
rev: 1.10.0
15+
rev: 1.14.1
1616
hooks:
1717
- id: mypy-conda

‎tests/test_parse_body.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def funcs(request):
2727
original_func_unparsed = inspect.getsource(original_func)
2828
# build ast from transformed function as format as string
2929
transformed_func_unparsed = transform_func_to_new_source(original_func)
30-
print(f"Original:\n{original_func_unparsed}\n" f"Transformed:\n{transformed_func_unparsed}")
30+
print(f"Original:\n{original_func_unparsed}\nTransformed:\n{transformed_func_unparsed}")
3131
return transformed_func, original_func
3232

3333

0 commit comments

Comments
 (0)