diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2022-10-24 06:14:34 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-24 07:22:48 +0000 |
commit | 3be6b29d81408d2adb741bff5b11c80214aa621e (patch) | |
tree | 3e3cb9b2f6088ebea30ebf354c72836d7c282a5d /modules/shared.py | |
parent | c623fa1f0b9a3936a29f1d1bd65f4e0fadf1c9c4 (diff) | |
download | stable-diffusion-webui-gfx803-3be6b29d81408d2adb741bff5b11c80214aa621e.tar.gz stable-diffusion-webui-gfx803-3be6b29d81408d2adb741bff5b11c80214aa621e.tar.bz2 stable-diffusion-webui-gfx803-3be6b29d81408d2adb741bff5b11c80214aa621e.zip |
indent=4 config.json
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
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:
|