Skip to content

Commit

Permalink
Merge pull request #73 from bento-platform/fixes/fix-bool
Browse files Browse the repository at this point in the history
fix bool response from /cohorts and /datasets
  • Loading branch information
gsfk authored Feb 13, 2024
2 parents 79b9d56 + d45c85e commit 2003fb4
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 2003fb4

Please sign in to comment.