From 607188b3525fe9c5151947799e5dae86b0d71463 Mon Sep 17 00:00:00 2001 From: Alex O Date: Tue, 6 Feb 2024 19:38:39 +0100 Subject: [PATCH] added correct return value when given env variable --- flathunter/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flathunter/config.py b/flathunter/config.py index 5cbcbd49..34b2f43f 100644 --- a/flathunter/config.py +++ b/flathunter/config.py @@ -463,7 +463,7 @@ def loop_period_seconds(self): def loop_refresh_config(self): if Env.FLATHUNTER_LOOP_REFRESH_CONFIG is not None: - return str(Env.FLATHUNTER_LOOP_REFRESH_CONFIG) + return True return super().loop_refresh_config() def loop_pause_from(self):