We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb2cfef commit e14b9bbCopy full SHA for e14b9bb
pro_tes/ga4gh/tes/models.py
@@ -38,7 +38,7 @@ class TesCreateTaskResponse(CustomBaseModel):
38
39
class TesExecutor(CustomBaseModel):
40
image: str = Field(
41
- default=[""],
+ default="",
42
description=(
43
"Name of the container image. The string will be passed as "
44
" the image\nargument to the containerization run command. "
@@ -626,7 +626,7 @@ class TesTask(CustomBaseModel):
626
)
627
resources: Optional[TesResources] = None
628
executors: list[TesExecutor] = Field(
629
- default=[TesExecutor],
+ default=[TesExecutor()],
630
631
"An array of executors to be run. Each of the executors "
632
" will run one\nat a time sequentially. Each executor is a"
0 commit comments