From d42f4ad870a7e3f3e7fa96fe8330180a143ab1cd Mon Sep 17 00:00:00 2001 From: Hironsan Date: Thu, 10 Feb 2022 15:48:13 +0900 Subject: [PATCH] Apply isort --- backend/api/tests/test_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/api/tests/test_config.py b/backend/api/tests/test_config.py index b50aa5ec..2f7bd3ba 100644 --- a/backend/api/tests/test_config.py +++ b/backend/api/tests/test_config.py @@ -2,9 +2,10 @@ from contextlib import contextmanager from importlib import reload from os import environ -from config import settings from django.test import TestCase +from config import settings + class TestDatabaseUrl(TestCase): def test_sslmode_defaults_to_required(self):