Skip to content

Commit 5463aaf

Browse files
committed
FIx.
1 parent ff72cb4 commit 5463aaf

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repos:
2525
- id: python-no-log-warn
2626
- id: text-unicode-replacement-char
2727
- repo: https://github.com/astral-sh/ruff-pre-commit
28-
rev: v0.11.4
28+
rev: v0.11.5
2929
hooks:
3030
- id: ruff-format
3131
- id: ruff
@@ -59,7 +59,7 @@ repos:
5959
- id: nbstripout
6060
exclude: (docs)
6161
- repo: https://github.com/crate-ci/typos
62-
rev: v1
62+
rev: v1.31.1
6363
hooks:
6464
- id: typos
6565
exclude: (\.ipynb)

src/_pytask/profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def profile(**raw_config: Any) -> NoReturn:
148148
except CollectionError: # pragma: no cover
149149
session.exit_code = ExitCode.COLLECTION_FAILED
150150

151-
except Exception: # noqa: BLE001; pragma: no cover
151+
except Exception: # noqa: BLE001 pragma: no cover
152152
session.exit_code = ExitCode.FAILED
153153
console.print_exception()
154154
console.rule(style="failed")

0 commit comments

Comments
 (0)