def set_(name, value):
section, option = name.split(".")
try:
cfg[section][option] = value
except KeyError:
print(
"Unknown config option {Style.BRIGHT}{}{Style.RESET_ALL}"
.format(
name,
Style=Style
)
)