parameters: remove indentation from json output

Reduces parameters.json.xz by ~3KB on v5x.
This commit is contained in:
Beat Küng
2023-08-07 15:28:42 +02:00
committed by Daniel Agar
parent 03365658d5
commit 8e1dd710a6
+1 -1
View File
@@ -140,7 +140,7 @@ class JsonOutput():
#Json string output.
self.output = json.dumps(all_json, indent=2, sort_keys=True)
self.output = json.dumps(all_json, sort_keys=True)
def Save(self, filename):