Skip to content

Commit 58a8a9a

Browse files
⬆️🩹 Update patch updates (#361)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4544c01 commit 58a8a9a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ repos:
5252

5353
## Ensure uv.lock is up to date
5454
- repo: https://github.com/astral-sh/uv-pre-commit
55-
rev: 0.11.18
55+
rev: 0.11.19
5656
hooks:
5757
- id: uv-lock
5858
priority: 0
@@ -69,7 +69,7 @@ repos:
6969

7070
## Check for typos
7171
- repo: https://github.com/adhtruong/mirrors-typos
72-
rev: v1.47.0
72+
rev: v1.47.2
7373
hooks:
7474
- id: typos
7575
priority: 3
@@ -128,7 +128,7 @@ repos:
128128

129129
## Format and lint Python files with ruff
130130
- repo: https://github.com/astral-sh/ruff-pre-commit
131-
rev: v0.15.15
131+
rev: v0.15.16
132132
hooks:
133133
- id: ruff-format
134134
types_or: [python, pyi, jupyter, markdown]

python/mqt/debugger/check/run_preparation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def start_compilation(code: Path, output_dir: Path) -> None:
4242
output_dir (Path): The directory to store the compiled slices.
4343
"""
4444
state = dbg.create_ddsim_simulation_state()
45-
try: # noqa: PLW0717
45+
try:
4646
with code.open("r", encoding="utf-8") as f:
4747
code_str = f.read()
4848
load_result = state.load_code(code_str)

0 commit comments

Comments
 (0)