diff options
author | Martin Fischer <martin@push-f.com> | 2022-07-21 10:04:32 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-07-21 10:04:44 +0200 |
commit | 69dea5adb17d5bb8e4c10cddbc01508a0d5b5324 (patch) | |
tree | 6092f51a162f2ec42108194e9b3fbff3f6ceab4c | |
parent | 6c5e3f8cc8f288aa40de391a0b66f9ca983cdbbb (diff) |
omit null values in JSON output
-rwxr-xr-x | proposals.py | 4 |
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 +) |