diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 14:19:29 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 18:25:58 -0700 |
commit | 956e64f47f7d47f2539cd6575c25ec0b6a33e567 (patch) | |
tree | b6775a940f21b3dabdd3e7de3398c2da874914fd /tests/test_work_pipeline.py | |
parent | 02249d03d086e71a589733280a2f5e32990f72b1 (diff) | |
download | fatcat-scholar-956e64f47f7d47f2539cd6575c25ec0b6a33e567.tar.gz fatcat-scholar-956e64f47f7d47f2539cd6575c25ec0b6a33e567.zip |
re-style imports (isort) on all core python files
Diffstat (limited to 'tests/test_work_pipeline.py')
-rw-r--r-- | tests/test_work_pipeline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_work_pipeline.py b/tests/test_work_pipeline.py index 977a708..d0512cf 100644 --- a/tests/test_work_pipeline.py +++ b/tests/test_work_pipeline.py @@ -1,12 +1,12 @@ import responses +from fatcat_scholar.config import settings from fatcat_scholar.issue_db import IssueDB from fatcat_scholar.sandcrawler import ( - SandcrawlerPostgrestClient, SandcrawlerMinioClient, + SandcrawlerPostgrestClient, ) from fatcat_scholar.work_pipeline import * -from fatcat_scholar.config import settings @responses.activate |