Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#1216)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.5.7 → v0.6.8](astral-sh/ruff-pre-commit@v0.5.7...v0.6.8)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Oct 3, 2024
1 parent 1a9f9d0 commit 74dd5f9
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.7
rev: v0.6.8
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
2 changes: 1 addition & 1 deletion nailgun/entity_mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def raise_task_timeout(): # pragma: no cover
except KeyboardInterrupt:
# raise_task_timeout will raise a KeyboardInterrupt when the timeout
# expires. Catch the exception and raise TaskTimedOutError
raise TaskTimedOutError( # noqa: TRY200 - Not raising from KeyBoardInterrupt
raise TaskTimedOutError( # noqa: B904 - Not raising from KeyBoardInterrupt
f"Timed out polling task {task_id}. Task information: {task_info}", task_id
)
finally:
Expand Down

0 comments on commit 74dd5f9

Please sign in to comment.