diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-01-22 19:51:56 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-01-22 19:51:56 -0800 |
commit | 3340910073bca6483937ed6d9e5f5b5942833c2e (patch) | |
tree | 006e478735cf6f481fc87fec871a9bd6f5b05862 /fatcat_scholar | |
parent | 645f6b40fd8bf25be140430eda7297064193a7ef (diff) | |
download | fatcat-scholar-3340910073bca6483937ed6d9e5f5b5942833c2e.tar.gz fatcat-scholar-3340910073bca6483937ed6d9e5f5b5942833c2e.zip |
sort keys in work pipeline (fix typo)
Diffstat (limited to 'fatcat_scholar')
-rw-r--r-- | fatcat_scholar/work_pipeline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fatcat_scholar/work_pipeline.py b/fatcat_scholar/work_pipeline.py index fd85089..d06bbcc 100644 --- a/fatcat_scholar/work_pipeline.py +++ b/fatcat_scholar/work_pipeline.py @@ -404,7 +404,7 @@ class WorkPipeline: continue if batch: ib = self.process_release_list(batch) - print(ib.json(exclude_none=True)) + print(ib.json(exclude_none=True, sort_keys=True)) batch_work_id = None batch = [ release, |