diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-06-03 23:30:44 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-06-03 23:30:46 -0700 |
commit | 4c90b94c24e9e78382d12947fb27c203318d6c9c (patch) | |
tree | 56756e5ff572201369634a5cd90c7e529e032e13 /fatcat_scholar/search.py | |
parent | ba7295cdf09c6b2bf288db85e15aa44b6782da06 (diff) | |
download | fatcat-scholar-4c90b94c24e9e78382d12947fb27c203318d6c9c.tar.gz fatcat-scholar-4c90b94c24e9e78382d12947fb27c203318d6c9c.zip |
flake8-annotation linting
Added some new annotations; need to finish more.
Diffstat (limited to 'fatcat_scholar/search.py')
-rw-r--r-- | fatcat_scholar/search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fatcat_scholar/search.py b/fatcat_scholar/search.py index 3d9ca9b..6402e2b 100644 --- a/fatcat_scholar/search.py +++ b/fatcat_scholar/search.py @@ -209,7 +209,7 @@ def do_fulltext_search( # Avoid deep paging problem. offset = deep_page_limit - search = search[offset:(offset+limit)] + search = search[offset : (offset + limit)] try: resp = search.execute() |