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
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-ast
- id: debug-statements
Expand All @@ -19,7 +19,7 @@ repos:
- id: text-unicode-replacement-char

- repo: https://github.com/asottile/pyupgrade
rev: v3.18.0
rev: v3.21.2
hooks:
- id: pyupgrade

Expand All @@ -30,7 +30,7 @@ repos:
args: [ --futures=true ]

- repo: https://github.com/PyCQA/isort
rev: 5.13.2
rev: 7.0.0
hooks:
- id: isort

Expand All @@ -39,13 +39,13 @@ repos:
hooks:
- id: autoflake

- repo: https://github.com/psf/black
rev: 24.10.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.1.0
hooks:
- id: black

- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
rev: 7.3.0
hooks:
- id: flake8
fail_fast: true
Expand Down
2 changes: 1 addition & 1 deletion app/base/utils/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def status_by_method(method: str) -> int:


def choices_to_help_text(
choices: type[models.Choices] | Iterable[tuple[Any, str]]
choices: type[models.Choices] | Iterable[tuple[Any, str]],
) -> str:
transcripts = []
if isinstance(choices, type) and issubclass(choices, Choices):
Expand Down
1 change: 1 addition & 0 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""

import os
import sys

Expand Down
Loading