Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ttannis committed Feb 12, 2020
1 parent d602d42 commit 3a97a36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion search_service/api/table.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from http import HTTPStatus
from typing import Iterable, Any
from typing import Any, Dict, Iterable # noqa: F401

from flask_restful import Resource, fields, marshal_with, reqparse
from flasgger import swag_from
Expand Down
2 changes: 1 addition & 1 deletion search_service/proxy/elasticsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def convert_query_json_to_query_dsl(self, *,
:param search_request:
:return: The search engine query DSL
"""
filter_list = search_request.get('filters') # type: Dict[str, List[str]]
filter_list = search_request.get('filters')
add_query = ''
query_dsl = ''

Expand Down

0 comments on commit 3a97a36

Please sign in to comment.