[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
This commit is contained in:
pre-commit-ci[bot] 2026-01-19 17:37:02 +00:00
parent 6e5938fcc3
commit ab97218768
2 changed files with 3 additions and 4 deletions

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
"""
}
"""}