From 2ca22ef865f3df82db4476659c1b3e4b79d7ffa4 Mon Sep 17 00:00:00 2001 From: Roujel Williams Date: Sun, 1 Dec 2024 22:56:34 -0500 Subject: [PATCH] Fixed lint error --- tools/sync2com-mojang.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/sync2com-mojang.py b/tools/sync2com-mojang.py index d18393000..f8a9d7f4b 100644 --- a/tools/sync2com-mojang.py +++ b/tools/sync2com-mojang.py @@ -124,7 +124,8 @@ def on_deleted(self, ev): sync_all() try: alert_watching() - while True: time.sleep(1) + while True: + time.sleep(1) except KeyboardInterrupt: observerBP.stop() observerRP.stop()