Skip to content

Commit

Permalink
support list of files as input in pydantic
Browse files Browse the repository at this point in the history
  • Loading branch information
v-rocheleau committed Aug 15, 2023
1 parent 13c2b6c commit 917eee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bento_wes/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down

0 comments on commit 917eee7

Please sign in to comment.