aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools/harvest/harvest_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_tools/harvest/harvest_common.py')
-rw-r--r--python/fatcat_tools/harvest/harvest_common.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/fatcat_tools/harvest/harvest_common.py b/python/fatcat_tools/harvest/harvest_common.py
index 11fd5fe8..4a71a655 100644
--- a/python/fatcat_tools/harvest/harvest_common.py
+++ b/python/fatcat_tools/harvest/harvest_common.py
@@ -5,7 +5,9 @@ import time
import datetime
import requests
from requests.adapters import HTTPAdapter
-from requests.packages.urllib3.util.retry import Retry
+# unclear why pylint chokes on this import. Recent 'requests' and 'urllib3' are
+# in Pipenv.lock, and there are no errors in QA
+from requests.packages.urllib3.util.retry import Retry # pylint: disable=import-error
# Used for parsing ISO date format (YYYY-MM-DD)