Skip to content

Commit

Permalink
Fixing black for unrestricted find
Browse files Browse the repository at this point in the history
  • Loading branch information
gogobd committed Nov 7, 2023
1 parent 39747f4 commit 60bd67d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plone/api/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ def find(context=None, depth=None, **kwargs):
if not valid_indexes:
return []

if kwargs.get('unrestricted'):
if kwargs.get("unrestricted"):
return catalog.unrestrictedSearchResults(**query)
else:
return catalog(**query)

0 comments on commit 60bd67d

Please sign in to comment.