aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools/importers/matched.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-11-02 17:31:53 -0700
committerBryan Newbold <bnewbold@robocracy.org>2021-11-02 17:31:53 -0700
commit367b06f64546e4533662017c9dbe72aca175a294 (patch)
tree022cbd3d4b78455e6810d8394155f73aa145e7ba /python/fatcat_tools/importers/matched.py
parent42c38edc9966267d591ea314a201757fa07f88a2 (diff)
downloadfatcat-367b06f64546e4533662017c9dbe72aca175a294.tar.gz
fatcat-367b06f64546e4533662017c9dbe72aca175a294.zip
lint/fmt: remove all 'import *'
Diffstat (limited to 'python/fatcat_tools/importers/matched.py')
-rw-r--r--python/fatcat_tools/importers/matched.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/fatcat_tools/importers/matched.py b/python/fatcat_tools/importers/matched.py
index d95c5847..e0e4fc3c 100644
--- a/python/fatcat_tools/importers/matched.py
+++ b/python/fatcat_tools/importers/matched.py
@@ -1,8 +1,9 @@
import fatcat_openapi_client
-from fatcat_tools.normal import *
-from .common import EntityImporter, make_rel_url, SANE_MAX_RELEASES, SANE_MAX_URLS
+from fatcat_tools.normal import clean_doi
+
+from .common import SANE_MAX_RELEASES, SANE_MAX_URLS, EntityImporter, make_rel_url
class MatchedImporter(EntityImporter):