From e49fd0d47051f1f52e63ea17fc680c40323b9141 Mon Sep 17 00:00:00 2001 From: Alyssa Dai Date: Thu, 24 Oct 2024 13:15:17 -0400 Subject: [PATCH] update type hints in CRUD func --- app/api/crud.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/api/crud.py b/app/api/crud.py index 0920a4c..4c38dc3 100644 --- a/app/api/crud.py +++ b/app/api/crud.py @@ -37,7 +37,7 @@ async def get( max_age: float, sex: str, diagnosis: str, - is_control: bool, + is_control: str, min_num_imaging_sessions: int, min_num_phenotypic_sessions: int, assessment: str, @@ -59,7 +59,7 @@ async def get( Sex of subject. diagnosis : str Subject diagnosis. - is_control : bool + is_control : str Whether or not subject is a control. min_num_imaging_sessions : int Subject minimum number of imaging sessions.