From 22f9670650498177c40a47a173b698700002c543 Mon Sep 17 00:00:00 2001 From: guille Date: Wed, 22 Feb 2023 08:06:01 -0500 Subject: [PATCH] beautify json --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 260336a..67679e3 100644 --- a/main.py +++ b/main.py @@ -19,7 +19,7 @@ os.remove(str(c.transparent_surfaces_path)) constructions = dict(opaque_surfaces=opaque['opaque_surfaces'], transparent_surfaces=transparent['transparent_surfaces']) with open(c.nrcan_constructions, 'w') as f: - json.dump(constructions, f) + json.dump(constructions, f, indent=2) print('NRCAN catalog successfully created')