From 917eee71bb36a7718041295862080d545d714b49 Mon Sep 17 00:00:00 2001 From: v-rocheleau Date: Tue, 15 Aug 2023 16:36:12 -0400 Subject: [PATCH] support list of files as input in pydantic --- bento_wes/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bento_wes/models.py b/bento_wes/models.py index ccb6a61..09c94d2 100644 --- a/bento_wes/models.py +++ b/bento_wes/models.py @@ -60,7 +60,7 @@ class BentoRunRequestTags(BaseModel): class RunRequest(BaseModel): - workflow_params: Json[dict[str, str | int | float | bool]] + workflow_params: Json[dict[str, str | int | float | bool | list[str]]] workflow_type: Literal["WDL"] workflow_type_version: Literal["1.0"] workflow_engine_parameters: Json[dict[str, str]]