From 0ff02899974461cf685aa01703a817177a0b7fb4 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Fri, 18 Feb 2022 20:07:03 -0500 Subject: [PATCH] BUGFIG bot - async sleep is in milliseconds --- op25Handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op25Handler.py b/op25Handler.py index f2a7c58..3926ec0 100644 --- a/op25Handler.py +++ b/op25Handler.py @@ -45,7 +45,7 @@ class OP25Handler: #(threading.Thread): if seconds_waited % 5 == 0: print("Terminating OP25") self.OP25Proc.terminate() - asyncio.sleep(5) + asyncio.sleep(1000) print(f"Waited {seconds_waited} seconds") seconds_waited += 1