From 33e2995cdb7851d75a3c85f0f38c5e1230423fb4 Mon Sep 17 00:00:00 2001 From: harisang Date: Wed, 17 May 2023 21:10:31 +0300 Subject: [PATCH] black fixes --- src/daemon.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/daemon.py b/src/daemon.py index a90245a..4e31d23 100644 --- a/src/daemon.py +++ b/src/daemon.py @@ -14,7 +14,9 @@ from src.constants import SLEEP_TIME_IN_SEC from src.monitoring_tests.template_test import TemplateTest from src.monitoring_tests.competition_endpoint_test.endpoint_test import EndpointTest -from src.monitoring_tests.quasimodo_ebbo_test.quasimodo_ebbo_test import QuasimodoEbboTest +from src.monitoring_tests.quasimodo_ebbo_test.quasimodo_ebbo_test import ( + QuasimodoEbboTest, +) def main(sleep_time: int) -> None: @@ -40,7 +42,9 @@ def main(sleep_time: int) -> None: while len(all_hashes) > 0: single_hash = all_hashes.pop(0) endpoint_test_success = endpoind_test.cow_endpoint_test(single_hash) - quasimodo_ebbo_test_success = quasimodo_ebbo_test.quasimodo_ebbo_test(single_hash) + quasimodo_ebbo_test_success = quasimodo_ebbo_test.quasimodo_ebbo_test( + single_hash + ) if not endpoint_test_success or not quasimodo_ebbo_test_success: unchecked_hashes.append(single_hash) else: