Update src/backend/lib/config.py

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
th3r00t
2025-08-11 12:24:15 -04:00
committed by GitHub
parent 6537f9758c
commit 12810d0cc0

View File

@@ -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()