Skip to content

Commit e14b9bb

Browse files
committed
chore: mypy errors
1 parent cb2cfef commit e14b9bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pro_tes/ga4gh/tes/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class TesCreateTaskResponse(CustomBaseModel):
3838

3939
class TesExecutor(CustomBaseModel):
4040
image: str = Field(
41-
default=[""],
41+
default="",
4242
description=(
4343
"Name of the container image. The string will be passed as "
4444
" the image\nargument to the containerization run command. "
@@ -626,7 +626,7 @@ class TesTask(CustomBaseModel):
626626
)
627627
resources: Optional[TesResources] = None
628628
executors: list[TesExecutor] = Field(
629-
default=[TesExecutor],
629+
default=[TesExecutor()],
630630
description=(
631631
"An array of executors to be run. Each of the executors "
632632
" will run one\nat a time sequentially. Each executor is a"

0 commit comments

Comments
 (0)