Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ManiMatter committed May 24, 2024
1 parent 289b566 commit 780654d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_config_value(key, config_section, is_mandatory, datatype, default_value
if datatype == bool:
config_value = eval(str(config_value).capitalize())
elif datatype == list:
config_value = json.loads(config_value)
config_value = json.loads(eval(str(config_value)))
elif config_value is not None:
config_value = cast(config_value, datatype)
except:
Expand Down

0 comments on commit 780654d

Please sign in to comment.