We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b93ab33 commit 1848594Copy full SHA for 1848594
1 file changed
build_ewt_manifest.py
@@ -1,4 +1,5 @@
1
import argparse
2
+import json
3
4
parser = argparse.ArgumentParser()
5
parser.add_argument('-v', help='Version number to use in the manifest. Example: 2025.09.2', required=True, type=str)
@@ -22,4 +23,4 @@
22
23
]
24
}
25
-print(manifest)
26
+print(json.dumps(manifest, indent=2))
0 commit comments