Compare commits

...

3 commits

Author SHA1 Message Date
pre-commit-ci[bot]
cb1f95412a
Merge 65398b8d1b into 3964ba4b78 2026-03-09 17:42:54 +00:00
pre-commit-ci[bot]
65398b8d1b [pre-commit.ci] auto fixes from pre-commit.com hooks
Some checks failed
Run Tox tests / build (3.10) (push) Has been cancelled
Run Tox tests / build (3.11) (push) Has been cancelled
Run Tox tests / build (3.12) (push) Has been cancelled
Run Tox tests / build (3.7) (push) Has been cancelled
Run Tox tests / build (3.8) (push) Has been cancelled
Run Tox tests / build (3.9) (push) Has been cancelled
for more information, see https://pre-commit.ci
2026-03-09 17:42:51 +00:00
pre-commit-ci[bot]
148ff00b90
[pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/PyCQA/isort: 5.13.2 → 8.0.1](https://github.com/PyCQA/isort/compare/5.13.2...8.0.1)
- https://github.com/psf/blackhttps://github.com/psf/black-pre-commit-mirror
- [github.com/psf/black-pre-commit-mirror: 24.4.2 → 26.3.0](https://github.com/psf/black-pre-commit-mirror/compare/24.4.2...26.3.0)
- [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v6.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.6.0...v6.0.0)
- [github.com/PyCQA/flake8: 7.0.0 → 7.3.0](https://github.com/PyCQA/flake8/compare/7.0.0...7.3.0)
2026-03-09 17:42:30 +00:00
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.0
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
"""
}
"""}