Skip to content

Commit

Permalink
return list instead of first term for subject-level assessment (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
alyssadai committed Jun 22, 2023
1 parent 71f0b4c commit c6d0742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ async def get(
"sex": "first",
"diagnosis": lambda x: list(set(x)),
"subject_group": "first",
"assessment": "first",
"assessment": lambda x: list(set(x)),
"image_modal": lambda x: list(set(x)),
"session_file_path": "first",
}
Expand Down

0 comments on commit c6d0742

Please sign in to comment.