Skip to content

Commit

Permalink
black fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed May 17, 2023
1 parent f6f1b66 commit 33e2995
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 33e2995

Please sign in to comment.