From 12810d0cc0aa0ea979d0d2208c335db54df97e0c Mon Sep 17 00:00:00 2001 From: th3r00t Date: Mon, 11 Aug 2025 12:24:15 -0400 Subject: [PATCH] Update src/backend/lib/config.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/backend/lib/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()