diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8386ebb..1a82aab 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v6.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -9,13 +9,13 @@ repos: - id: check-merge-conflict - repo: https://github.com/pycqa/isort - rev: 5.13.2 + rev: 8.0.1 hooks: - id: isort args: [--profile, black, --line-length=79] - repo: https://github.com/pycqa/flake8 - rev: 7.0.0 + rev: 7.3.0 hooks: - id: flake8 additional_dependencies: @@ -23,8 +23,8 @@ repos: config: ./setup.cfg exclude: migrations -- repo: https://github.com/psf/black - rev: 24.4.2 +- repo: https://github.com/psf/black-pre-commit-mirror + rev: 26.1.0 hooks: - id: black args: [--line-length=79] diff --git a/backend/manage.py b/backend/manage.py index 9536714..567db9a 100644 --- a/backend/manage.py +++ b/backend/manage.py @@ -1,5 +1,6 @@ #!/usr/bin/env python """Django's command-line utility for administrative tasks.""" + import os import sys