aboutsummaryrefslogtreecommitdiff
path: root/modules/shared.py
diff options
context:
space:
mode:
authorw-e-w <40751091+w-e-w@users.noreply.github.com>2022-10-24 15:14:34 +0900
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-24 10:22:48 +0300
commit3be6b29d81408d2adb741bff5b11c80214aa621e (patch)
tree3e3cb9b2f6088ebea30ebf354c72836d7c282a5d /modules/shared.py
parentc623fa1f0b9a3936a29f1d1bd65f4e0fadf1c9c4 (diff)
indent=4 config.json
Diffstat (limited to 'modules/shared.py')
-rw-r--r--modules/shared.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py
index 6541e679..d6ddfe59 100644
--- a/modules/shared.py
+++ b/modules/shared.py
@@ -348,7 +348,7 @@ class Options:
def save(self, filename):
with open(filename, "w", encoding="utf8") as file:
- json.dump(self.data, file)
+ json.dump(self.data, file, indent=4)
def same_type(self, x, y):
if x is None or y is None: