From 66bfbab9b2bc0517fa4bc5306a00ef14c0356e18 Mon Sep 17 00:00:00 2001 From: camillebrianceau Date: Wed, 29 May 2024 18:56:02 +0200 Subject: [PATCH] tests --- clinicadl/utils/config_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/clinicadl/utils/config_utils.py b/clinicadl/utils/config_utils.py index a15cb6163..53928e2fd 100644 --- a/clinicadl/utils/config_utils.py +++ b/clinicadl/utils/config_utils.py @@ -137,4 +137,3 @@ def get_type_from_config_class(arg: str, config: BaseModel) -> Any: return click.Choice(list([option.value for option in type_])) else: return type_ - # raise TypeError(f"the type {type_} is not supported for the argument {arg}.")