From b8d872f8e5e07404e8d90bb83bf72e0cb52b19e6 Mon Sep 17 00:00:00 2001 From: enkore Date: Sun, 2 Jan 2022 18:21:23 +0100 Subject: [PATCH] ticker: fix "non-required setting(s) with no default!" --- i3pystatus/ticker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/ticker.py b/i3pystatus/ticker.py index 23ab9c7..384b27b 100644 --- a/i3pystatus/ticker.py +++ b/i3pystatus/ticker.py @@ -21,7 +21,7 @@ class Ticker(IntervalModule): ("bad_threshold", "The target value for consindering the stock a poor value"), "format" ) - #required = "symbol" + required = ("symbol",) good_color = "#00FF00" # green caution_color = "#FFFF00" # yellow bad_color = "#FF0000" # red