From 2fa79317831c7d01a7c76160cbf255c5de717d14 Mon Sep 17 00:00:00 2001 From: Tom Watson Date: Tue, 12 Jul 2022 00:19:19 +0700 Subject: [PATCH] Fixed runaway thread creation (faulty indenting) --- bumblebee_status/modules/contrib/publicip.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bumblebee_status/modules/contrib/publicip.py b/bumblebee_status/modules/contrib/publicip.py index 3c98bfc..67a5c86 100644 --- a/bumblebee_status/modules/contrib/publicip.py +++ b/bumblebee_status/modules/contrib/publicip.py @@ -73,9 +73,8 @@ def update_publicip_information(module): # Update widget values core.event.trigger("update", [widget.module.id], redraw_only=True) - # Wait __interval seconds before checking for default route changes again - time.sleep(__interval) - + # Wait __interval seconds before checking for default route changes again + time.sleep(__interval) class Module(core.module.Module): @core.decorators.every(minutes=60)