From 80d5437be406167b9c07e054f708df624924bb9f Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:15:59 +0100 Subject: [PATCH] isort --- trafficlight/__init__.py | 2 +- trafficlight/http/adapter.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/trafficlight/__init__.py b/trafficlight/__init__.py index 04af2f5..da23d01 100644 --- a/trafficlight/__init__.py +++ b/trafficlight/__init__.py @@ -25,9 +25,9 @@ from trafficlight.homerunner import HomerunnerClient from trafficlight.http.adapter import ( adapter_shutdown, + loop_check_all_tests_done, loop_check_for_new_tests, loop_cleanup_unresponsive_adapters, - loop_check_all_tests_done, ) from trafficlight.internals.testsuite import TestSuite from trafficlight.store import add_testsuite, get_testsuites diff --git a/trafficlight/http/adapter.py b/trafficlight/http/adapter.py index fb7057c..6825b8f 100644 --- a/trafficlight/http/adapter.py +++ b/trafficlight/http/adapter.py @@ -33,8 +33,8 @@ get_adapter, get_adapters, get_tests, - remove_adapter, get_testsuites, + remove_adapter, ) IDLE_ADAPTER_UNRESPONSIVE_DELAY = timedelta(minutes=1)