Skip to content

Commit

Permalink
pre-commit: Bump versions
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Finucane <stephen@that.guru>
  • Loading branch information
stephenfin committed Dec 28, 2024
1 parent 7f29172 commit c999be2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ default_language_version:
python: python3
repos:
- repo: https://github.com/ambv/black
rev: 23.7.0
rev: 24.10.0
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: mixed-line-ending
Expand All @@ -24,11 +24,11 @@ repos:
files: .*\.(yaml|yml)$
- id: check-added-large-files
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.1.1
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.4.1
rev: v1.14.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion sphinx_click/ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def _write_opts(opts: ty.List[str]) -> str:
% (
', '.join(repr(d) for d in opt.default)
if isinstance(opt.default, (list, tuple))
else repr(opt.default),
else repr(opt.default)
)
)

Expand Down

0 comments on commit c999be2

Please sign in to comment.