Skip to content

Commit

Permalink
reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
tedw87 committed Oct 25, 2024
1 parent 2f89198 commit 6c70033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plone/restapi/search/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _constrain_query_by_path(self, query):

def quote_chars(self, query):
# Escape parentheses by adding backslashes before them
return query.replace('(', '').replace(')', '').strip()
return query.replace("(", "").replace(")", "").strip()

def search(self, query=None):
if query is None:
Expand Down

0 comments on commit 6c70033

Please sign in to comment.