diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-23 15:02:27 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-24 10:07:48 -0700 |
commit | d798ee172294de09ab1621530df4e3498a17640e (patch) | |
tree | 118e77177d143580821ff9293eccf84e2de77e34 /python/fatcat_web | |
parent | 94dc508bc54399027c3e2cff0f21e41250c81d89 (diff) | |
download | fatcat-d798ee172294de09ab1621530df4e3498a17640e.tar.gz fatcat-d798ee172294de09ab1621530df4e3498a17640e.zip |
small lint fixes
Diffstat (limited to 'python/fatcat_web')
-rw-r--r-- | python/fatcat_web/search.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/fatcat_web/search.py b/python/fatcat_web/search.py index ca270110..1165a004 100644 --- a/python/fatcat_web/search.py +++ b/python/fatcat_web/search.py @@ -9,7 +9,6 @@ import datetime from dataclasses import dataclass from typing import List, Optional, Any -from flask import abort, flash import elasticsearch from elasticsearch_dsl import Search, Q import elasticsearch_dsl.response @@ -43,7 +42,7 @@ class ReleaseQuery: offset = max(0, int(offset)) if offset.isnumeric() else 0 return ReleaseQuery( - q=query_str, + q=query_str, offset=offset, fulltext_only=bool(args.get('fulltext_only')), container_id=container_id, |