diff --git a/src/backend/lib/config.py b/src/backend/lib/config.py index e601684..c5ad4ed 100755 --- a/src/backend/lib/config.py +++ b/src/backend/lib/config.py @@ -102,7 +102,7 @@ class Config: try: return self.open_file() except FileNotFoundError: - with open(self._fp, 'w') as _config_file: + with open(self._fp, "w") as _config_file: json.dump(self.config_structure, _config_file) _config_file.close() return self.open_file()