Remove configuration sections. #723

Merged
witten merged 13 commits from remove-sections into main 2023-07-14 03:10:52 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 054bd52482 - Show all commits

View File

@ -45,7 +45,7 @@ def make_environment(config):
option_name,
environment_variable_name,
) in DEFAULT_BOOL_OPTION_TO_UPPERCASE_ENVIRONMENT_VARIABLE.items():
value = storage_config.get(option_name, False)
value = config.get(option_name, False)
environment[environment_variable_name] = 'YES' if value else 'NO'
return environment