This commit is contained in:
pre-commit-ci[bot] 2026-03-16 17:40:00 +00:00 committed by GitHub
commit 06b1dfdad4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 9 deletions

View file

@ -1,15 +1,15 @@
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
rev: 8.0.1
hooks:
- id: isort
additional_dependencies: [toml]
- repo: https://github.com/psf/black
rev: 24.4.2
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.1
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
@ -28,7 +28,7 @@ repos:
args: ["--remove"]
- id: requirements-txt-fixer
- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
rev: 7.3.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/pydocstyle

View file

@ -1,5 +1,6 @@
#!/usr/bin/env python
"""Entrypoint for custom django functions."""
import os
import sys

View file

@ -16,11 +16,9 @@ class SimpleTest(TestCase):
self.assertEqual(1 + 1, 2)
__test__ = {
"doctest": """
__test__ = {"doctest": """
Another way to test that 1 + 1 is equal to 2.
>>> 1 + 1 == 2
True
"""
}
"""}