Skip to content

Commit

Permalink
Fix parse_value
Browse files Browse the repository at this point in the history
  • Loading branch information
jrdnbradford committed Feb 3, 2024
1 parent d0c9aa2 commit 4912cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tljh/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4912cff

Please sign in to comment.