mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
[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
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:
parent
4bc8f3fba0
commit
a88b645af6
2 changed files with 3 additions and 4 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
"""
|
"""}
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue