Skip to content

Commit

Permalink
fix bug to return boolean array
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkent committed Nov 22, 2023
1 parent 340d225 commit 4636487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compose/neurosynth_compose/schemas/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def to_bool(self, data, **kwargs):
output_conditions[i] = True
elif cond.lower() == "false":
output_conditions[i] = False
data["conditions"] = conditions
data["conditions"] = output_conditions

return data

Expand Down

0 comments on commit 4636487

Please sign in to comment.