From 6f62f9ddfbcaf333f1a430a49500b693911f13f3 Mon Sep 17 00:00:00 2001 From: Alexis Michaltsis Date: Fri, 28 Oct 2022 13:11:00 +0200 Subject: [PATCH] Improve imports --- app/projects/tests.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/app/projects/tests.py b/app/projects/tests.py index 0c0fc4ad..f8e29f7f 100644 --- a/app/projects/tests.py +++ b/app/projects/tests.py @@ -1,17 +1,15 @@ -import pytest import json + +import pytest from django.test import TestCase -from django.urls import reverse -from django.conf import settings as django_settings from django.test.client import RequestFactory -from projects.models import Project, Scenario, Viewer, Asset -from users.models import CustomUser -from django.core.exceptions import ValidationError - +from django.urls import reverse +from projects.models import Project, Scenario, Asset from projects.scenario_topology_helpers import ( load_scenario_from_dict, load_project_from_dict, ) +from users.models import CustomUser class BasicOperationsTest(TestCase):