From 2e8ef8aee0c35b71e9d35800501cd6ca76e71b90 Mon Sep 17 00:00:00 2001 From: Joan Cano Date: Mon, 20 Mar 2023 00:07:53 +0100 Subject: [PATCH] Removed initial sleep that was added --- wallamanta/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallamanta/worker.py b/wallamanta/worker.py index 714f798..1c3b32b 100644 --- a/wallamanta/worker.py +++ b/wallamanta/worker.py @@ -191,7 +191,7 @@ class Worker: def run(product): worker = Worker() list = worker.first_run(product) - time.sleep(constants.SLEEP_TIME) + #time.sleep(constants.SLEEP_TIME) while True: try: loop = asyncio.new_event_loop()