Remove pointless comparison to "True"
- We lower the string so it would always be converted to "true"
This commit is contained in:
@@ -60,7 +60,7 @@ for setting in settings_dict:
|
|||||||
|
|
||||||
# Coerce env var values to the expected type in settings.json
|
# Coerce env var values to the expected type in settings.json
|
||||||
if type(settings_dict[setting]) == bool:
|
if type(settings_dict[setting]) == bool:
|
||||||
env_value = env_value.lower() in ['True', 'true']
|
env_value = env_value.lower() == 'true'
|
||||||
else:
|
else:
|
||||||
setting_type = type(settings_dict[setting])
|
setting_type = type(settings_dict[setting])
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user