Skip to content

Commit

Permalink
fix: redundant string conversion
Browse files Browse the repository at this point in the history
Co-authored-by: Piotr Surowiec <[email protected]>
  • Loading branch information
0x29a and Agrendalath authored Nov 17, 2023
1 parent 33605a9 commit 174c826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enterprise/api/v1/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def algolia_key(self, request, *args, **kwargs):
settings.ENTERPRISE_ALGOLIA_SEARCH_API_KEY,
{
"filters": " OR ".join(
f"enterprise_customer_uuids:{str(enterprise_customer_uuid)}"
f"enterprise_customer_uuids:{enterprise_customer_uuid}"
for enterprise_customer_uuid
in queryset
),
Expand Down

0 comments on commit 174c826

Please sign in to comment.