diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-21 22:19:19 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-21 22:22:32 -0800 |
commit | fb80eab1bdae2d21a3dda2e82230b7477ed41ebc (patch) | |
tree | 22249594f630b5535eea5a95dea8a8f81e0abbd0 /python/fatcat_tools/harvest/doi_registrars.py | |
parent | 972f00e0e980da308fe80552145622ee69105b3b (diff) | |
download | fatcat-fb80eab1bdae2d21a3dda2e82230b7477ed41ebc.tar.gz fatcat-fb80eab1bdae2d21a3dda2e82230b7477ed41ebc.zip |
clean up harvester comments/docs
Diffstat (limited to 'python/fatcat_tools/harvest/doi_registrars.py')
-rw-r--r-- | python/fatcat_tools/harvest/doi_registrars.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/python/fatcat_tools/harvest/doi_registrars.py b/python/fatcat_tools/harvest/doi_registrars.py index 0296a9d9..d27389ba 100644 --- a/python/fatcat_tools/harvest/doi_registrars.py +++ b/python/fatcat_tools/harvest/doi_registrars.py @@ -12,11 +12,6 @@ from pykafka import KafkaClient from fatcat_tools.workers import most_recent_message from .harvest_common import HarvestState -# Skip pylint due to: -# AttributeError: 'NoneType' object has no attribute 'scope' -# in 'astroid/node_classes.py' -# pylint: skip-file - class HarvestCrossrefWorker: """ @@ -187,3 +182,4 @@ class HarvestDataciteWorker(HarvestCrossrefWorker): def update_params(self, params, resp): params['page[number]'] = resp['meta']['page'] + 1 return params + |