diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-07-23 11:58:41 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-07-23 11:58:41 -0700 |
commit | d01ab339a0aa568b6ccd6c56beb611a2e7ac9686 (patch) | |
tree | e10c16db8dda293727f38d9f00a1b3c410cdd887 /python/fatcat_web/ref_routes.py | |
parent | c41e8531692c2f3973cee647bf2e1810fa917397 (diff) | |
download | fatcat-d01ab339a0aa568b6ccd6c56beb611a2e7ac9686.tar.gz fatcat-d01ab339a0aa568b6ccd6c56beb611a2e7ac9686.zip |
remove unused imports (lint)
Diffstat (limited to 'python/fatcat_web/ref_routes.py')
-rw-r--r-- | python/fatcat_web/ref_routes.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/python/fatcat_web/ref_routes.py b/python/fatcat_web/ref_routes.py index e24b4ac6..7c3ba5bd 100644 --- a/python/fatcat_web/ref_routes.py +++ b/python/fatcat_web/ref_routes.py @@ -3,17 +3,14 @@ Flask endpoints for reference (citation) endpoints. Eg, listing references "inbound" and "outbound" from a specific release or work. """ -from typing import Optional - -from flask import render_template, abort, redirect, request +from flask import render_template, request from fatcat_openapi_client import * -from fatcat_openapi_client.rest import ApiException from fuzzycat.grobid_unstructured import grobid_api_process_citation, transform_grobid_ref_xml, grobid_ref_to_release from fuzzycat.simple import close_fuzzy_biblio_matches, close_fuzzy_release_matches from fatcat_tools.references import enrich_inbound_refs, enrich_outbound_refs, get_inbound_refs, get_outbound_refs from fatcat_tools.transforms.access import release_access_options -from fatcat_web import app, api, auth_api +from fatcat_web import app, api from fatcat_web.forms import * from fatcat_web.entity_helpers import * |