Skip to content

Commit

Permalink
fix bool response from /cohorts and /datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
gsfk committed Feb 7, 2024
1 parent 79b9d56 commit d45c85e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bento_beacon/utils/beacon_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def beacon_collections_response(results):
r = {
"meta": response_meta(returned_schemas, returned_granularity),
"response": results,
"responseSummary": {"exists": "true" if results else False}
"responseSummary": {"exists": True if results else False}
}
info = response_info()
if info:
Expand Down

0 comments on commit d45c85e

Please sign in to comment.