Skip to content

Commit

Permalink
build: adding support python 3.11 and 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Feb 21, 2024
1 parent 9303926 commit 00a13cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions search/elastic.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,15 +469,16 @@ def remove(self, doc_ids, **kwargs):
log.exception("An error occurred while removing documents from the index: %r", valid_errors)
raise

# pylint: disable=arguments-rename, unused-argument
def search(self,
query_string=None,
field_dictionary=None,
filter_dictionary=None,
exclude_dictionary=None,
aggregation_terms=None,
exclude_ids=None,
use_field_match=False, # pylint: disable=unused-argument
log_search_params=False, # pylint: disable=arguments-rename
use_field_match=False,
log_search_params=False,
**kwargs):
"""
Implements call to search the index for the desired content.
Expand Down

0 comments on commit 00a13cb

Please sign in to comment.