Skip to content

Commit

Permalink
hotfix for request_contains_any
Browse files Browse the repository at this point in the history
  • Loading branch information
francesconazzaro committed Jan 21, 2025
1 parent d4d7f63 commit bac1747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cads_broker/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def request_contains_all(context, key, values):
return contains_all(request_values, values)


def request_contains_any(context, column, key, values):
def request_contains_any(context, key, values):
request_values = context.request.request_body.get("request").get(key)
return contains_any(request_values, values)

Expand Down

0 comments on commit bac1747

Please sign in to comment.