diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-22 11:48:41 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-22 11:48:41 -0800 |
commit | fbbd7f2dc2d4a82d3da9327a7297f47103196544 (patch) | |
tree | 76d6c953b3842fd4273a73a8780c554638f7ecff /python/fatcat_tools/harvest/doi_registrars.py | |
parent | 74c5f30ab878a914d3edb51040f4d78054684947 (diff) | |
download | fatcat-fbbd7f2dc2d4a82d3da9327a7297f47103196544.tar.gz fatcat-fbbd7f2dc2d4a82d3da9327a7297f47103196544.zip |
bunch of lint/whitespace cleanups
Diffstat (limited to 'python/fatcat_tools/harvest/doi_registrars.py')
-rw-r--r-- | python/fatcat_tools/harvest/doi_registrars.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/fatcat_tools/harvest/doi_registrars.py b/python/fatcat_tools/harvest/doi_registrars.py index 4a0cb8db..55d85ef9 100644 --- a/python/fatcat_tools/harvest/doi_registrars.py +++ b/python/fatcat_tools/harvest/doi_registrars.py @@ -4,9 +4,9 @@ import sys import csv import json import time -import requests import itertools import datetime +import requests from pykafka import KafkaClient from fatcat_tools.workers import most_recent_message @@ -182,4 +182,3 @@ class HarvestDataciteWorker(HarvestCrossrefWorker): def update_params(self, params, resp): params['page[number]'] = resp['meta']['page'] + 1 return params - |