diff --git a/example/manage.py b/example/manage.py index 195f6b9..fda21c1 100755 --- a/example/manage.py +++ b/example/manage.py @@ -1,5 +1,6 @@ #!/usr/bin/env python """Entrypoint for custom django functions.""" + import os import sys diff --git a/example/simpletext/tests.py b/example/simpletext/tests.py index f51d798..73d6465 100644 --- a/example/simpletext/tests.py +++ b/example/simpletext/tests.py @@ -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 -""" -} +"""}