diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 14:33:09 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 18:25:58 -0700 |
commit | b4d0bfb643842e6070a4ee36cfc52e2292e3b5ba (patch) | |
tree | 1988743c61f5c053148d66f6939ff32f398ae06e /fatcat_scholar/query_citation.py | |
parent | 956e64f47f7d47f2539cd6575c25ec0b6a33e567 (diff) | |
download | fatcat-scholar-b4d0bfb643842e6070a4ee36cfc52e2292e3b5ba.tar.gz fatcat-scholar-b4d0bfb643842e6070a4ee36cfc52e2292e3b5ba.zip |
make fmt (black 21.9b0)
Diffstat (limited to 'fatcat_scholar/query_citation.py')
-rw-r--r-- | fatcat_scholar/query_citation.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fatcat_scholar/query_citation.py b/fatcat_scholar/query_citation.py index 3f741f0..6cc9086 100644 --- a/fatcat_scholar/query_citation.py +++ b/fatcat_scholar/query_citation.py @@ -31,7 +31,10 @@ def grobid_process_citation( try: grobid_response = requests.post( grobid_host + "/api/processCitation", - data={"citations": raw, "consolidateCitations": 0,}, + data={ + "citations": raw, + "consolidateCitations": 0, + }, timeout=timeout, ) except requests.Timeout: |