aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat_scholar/work_pipeline.py
diff options
context:
space:
mode:
Diffstat (limited to 'fatcat_scholar/work_pipeline.py')
-rw-r--r--fatcat_scholar/work_pipeline.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fatcat_scholar/work_pipeline.py b/fatcat_scholar/work_pipeline.py
index accbc1d..b2ceaf8 100644
--- a/fatcat_scholar/work_pipeline.py
+++ b/fatcat_scholar/work_pipeline.py
@@ -355,7 +355,7 @@ class WorkPipeline:
continue
if batch:
ib = self.process_release_list(batch)
- print(ib.json())
+ print(ib.json(exclude_none=True))
batch_work_id = None
batch = [
release,
@@ -364,7 +364,7 @@ class WorkPipeline:
if batch:
ib = self.process_release_list(batch)
- print(ib.json())
+ print(ib.json(exclude_none=True, sort_keys=True))
def main() -> None: