From be9fcc522a0e8dd95167236b30deb936ca6a4721 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Thu, 19 Jan 2023 18:35:56 +0000 Subject: sort imports using isort. tested. --- core/TESTS/tests_caves.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'core/TESTS/tests_caves.py') diff --git a/core/TESTS/tests_caves.py b/core/TESTS/tests_caves.py index dd8f1df..732ebe8 100644 --- a/core/TESTS/tests_caves.py +++ b/core/TESTS/tests_caves.py @@ -2,11 +2,14 @@ Modified for Expo April 2021. """ -import unittest import re -from django.test import TestCase, SimpleTestCase, Client +import unittest + +from django.test import Client, SimpleTestCase, TestCase + +from troggle.core.models.caves import Area, Cave from troggle.core.models.troggle import Expedition, Person, PersonExpedition -from troggle.core.models.caves import Cave, Area + class FixtureTests(TestCase): '''These just hit the database. -- cgit v1.2.3