Skip to content

Commit

Permalink
Fix stray semicolon (#82)
Browse files Browse the repository at this point in the history
* Allow booleans and strings

* Fix stray semicolon
  • Loading branch information
rosmo authored Sep 20, 2024
1 parent 5052190 commit eef0cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _jinja_expand_bool_str(self, contents, _tpl='config'):
if val_str == 'true' or val_str == 't' or val_str == 'yes' or val_str == 'y' or val_str == '1':
return True
if val_str == 'false' or val_str == 'f' or val_str == 'no' or val_str == 'n' or val_str == '0':
return False;
return False
return val_str

def _jinja_expand_string(self, contents, _tpl='config'):
Expand Down

0 comments on commit eef0cc7

Please sign in to comment.