summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2022-07-21 10:04:32 +0200
committerMartin Fischer <martin@push-f.com>2022-07-21 10:04:44 +0200
commit69dea5adb17d5bb8e4c10cddbc01508a0d5b5324 (patch)
tree6092f51a162f2ec42108194e9b3fbff3f6ceab4c
parent6c5e3f8cc8f288aa40de391a0b66f9ca983cdbbb (diff)
omit null values in JSON output
-rwxr-xr-xproposals.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/proposals.py b/proposals.py
index 157e727..3ecc962 100755
--- a/proposals.py
+++ b/proposals.py
@@ -152,4 +152,6 @@ def sort_key(proposal):
proposals.sort(key=sort_key, reverse=True)
-json.dump(proposals, sys.stdout)
+json.dump(
+ [{k: v for k, v in p.items() if v is not None} for p in proposals], sys.stdout
+)