Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: check-ast
Expand All @@ -16,7 +16,7 @@ repos:
- id: check-toml
- id: debug-statements
- repo: https://github.com/PyCQA/isort
rev: '5.13.2'
rev: '7.0.0'
hooks:
- id: isort
additional_dependencies:
Expand All @@ -26,7 +26,7 @@ repos:
hooks:
- id: stylelint
additional_dependencies: ['stylelint', 'stylelint-config-standard']
- repo: https://github.com/psf/black
rev: '24.8.0'
- repo: https://github.com/psf/black-pre-commit-mirror
rev: '25.11.0'
hooks:
- id: black
2 changes: 1 addition & 1 deletion tempren/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def alias(val: str) -> Tuple[TagName, str]:


def validate_adhoc_tags(
adhoc_tags: List[List[Tuple[TagName, Path]]]
adhoc_tags: List[List[Tuple[TagName, Path]]],
) -> Dict[TagName, Path]:
if not adhoc_tags:
return dict()
Expand Down
Loading