def backup_config(self): """ Create a manual backup of the `config.ini` file.""" data = config.make_backup() self._api_result_type = 'success' if data else 'error' return data
def backup_config(self): """ Create a manual backup of the `config.ini` file. """ data = config.make_backup() if data: self.result_type = 'success' else: self.result_type = 'failed' return data