[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-03-09 17:42:51 +00:00
parent 148ff00b90
commit 65398b8d1b
2 changed files with 3 additions and 4 deletions

View file

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

View file

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