From 4912cffe65c0150c1fc91de0ad83c7006e0e880d Mon Sep 17 00:00:00 2001 From: Jordan Bradford <36420801+jrdnbradford@users.noreply.github.com> Date: Sat, 3 Feb 2024 13:27:58 -0500 Subject: [PATCH] Fix `parse_value` --- tljh/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tljh/config.py b/tljh/config.py index 1c4967b..7083dcc 100644 --- a/tljh/config.py +++ b/tljh/config.py @@ -309,7 +309,7 @@ def parse_value(value_str): return float(value_str) elif value_str.lower() == "true": return True - elif value_str.lower() == "False": + elif value_str.lower() == "false": return False else: # it's a string