def __save_config(self):
"""Saves the configuration.
Saves the config attribute to the configuration
file.
"""
with open(self.USERS_CONF_PATH, "w+") as config_file:
config_file.write(yaml.dump(self.__config))
文章目录