Skip to content

Commit

Permalink
Allow multiple situations
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed Apr 18, 2024
1 parent 0a90b7b commit 6570afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def simple_cards():
if responses:
filters['response_ids_parents']= responses
if situations:
filters['situation_ids']= situations
filters['situation_ids']= situations.split(',')
if bounds:
bounds = bounds.split(',')
bounds = [float(x) for x in bounds]
Expand Down

0 comments on commit 6570afc

Please sign in to comment.