From c3e2f2858c6d6f494af211d6cebf2e4ce326d7d7 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 17:39:56 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- example/manage.py | 1 + example/simpletext/tests.py | 6 ++---- 2 files changed, 3 insertions(+), 4 deletions(-) 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 -""" -} +"""}