Skip to content

Commit

Permalink
chore(pre-commit-deps): pre-commit autoupdate (#314)
Browse files Browse the repository at this point in the history
* chore(pre-commit-deps): pre-commit autoupdate

updates:
- [github.com/renovatebot/pre-commit-hooks: 2ee0ea5928cdcc177d354042cd515407fcd1380f → b5bc4954d6edae37b653287734741673cb09a614](renovatebot/pre-commit-hooks@2ee0ea5...b5bc495)
- [github.com/python-jsonschema/check-jsonschema: cb3c2be894b151dff143b1baf6acbd55f2b7faed → 62833a79b57fcd1bc372b136911a0edca60c3dcb](python-jsonschema/check-jsonschema@cb3c2be...62833a7)
- [github.com/astral-sh/ruff-pre-commit: 89c421dff2e1026ba12cdb9ebd731f4a83aa8021 → 18ba2d02dcafd1cc608bd83eff6c17fb0108ca71](astral-sh/ruff-pre-commit@89c421d...18ba2d0)

* refactor: Run ruff format

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Nicholas Felt <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and nfelt14 authored Jan 13, 2025
1 parent 4028d79 commit b030090
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ repos:
- id: remove-tabs
- id: forbid-tabs
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 2ee0ea5928cdcc177d354042cd515407fcd1380f # frozen: 39.91.3
rev: b5bc4954d6edae37b653287734741673cb09a614 # frozen: 39.106.1
hooks:
- id: renovate-config-validator
language_version: 20.18.0 # TODO: remove this line once https://github.com/renovatebot/pre-commit-hooks/issues/2460 is resolved
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: cb3c2be894b151dff143b1baf6acbd55f2b7faed # frozen: 0.30.0
rev: 62833a79b57fcd1bc372b136911a0edca60c3dcb # frozen: 0.31.0
hooks:
- id: check-dependabot
- id: check-github-actions
Expand Down Expand Up @@ -137,7 +137,7 @@ repos:
always_run: true
args: [audit, --json, --ignore-code=CVE-2019-8341]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 89c421dff2e1026ba12cdb9ebd731f4a83aa8021 # frozen: v0.8.6
rev: 18ba2d02dcafd1cc608bd83eff6c17fb0108ca71 # frozen: v0.9.1
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
2 changes: 1 addition & 1 deletion actions/update_development_dependencies/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def convert_dict_input(input_str: str) -> dict[str, list[str]]:
return result_dict # pyright: ignore[reportUnknownVariableType]
raise ValueError # noqa: TRY301
except (SyntaxError, ValueError) as e:
msg = f'Input "{input_str}" does not match the required ' f"type of `dict[str, list[str]]`."
msg = f'Input "{input_str}" does not match the required type of `dict[str, list[str]]`.'
raise ValueError(msg) from e


Expand Down

0 comments on commit b030090

Please sign in to comment.