From ab0b65ff92b97c7f22393b9981248bf345ce3a4d Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Thu, 5 May 2022 20:42:25 -0400 Subject: [PATCH] Remove whitespace indents from large Auspice JSONs --- scripts/fix-colorings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fix-colorings.py b/scripts/fix-colorings.py index 8151fdc15..ced715b50 100644 --- a/scripts/fix-colorings.py +++ b/scripts/fix-colorings.py @@ -86,4 +86,4 @@ def recurse(node): adjust_coloring_for_epiweeks(input_json) with open(args.output, 'w') as f: - json.dump(input_json, f, indent=2) + json.dump(input_json, f, indent=0)