Skip to content

Commit

Permalink
chore: mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeAeich committed Dec 19, 2024
1 parent cb2cfef commit e14b9bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pro_tes/ga4gh/tes/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class TesCreateTaskResponse(CustomBaseModel):

class TesExecutor(CustomBaseModel):
image: str = Field(
default=[""],
default="",
description=(
"Name of the container image. The string will be passed as "
" the image\nargument to the containerization run command. "
Expand Down Expand Up @@ -626,7 +626,7 @@ class TesTask(CustomBaseModel):
)
resources: Optional[TesResources] = None
executors: list[TesExecutor] = Field(
default=[TesExecutor],
default=[TesExecutor()],
description=(
"An array of executors to be run. Each of the executors "
" will run one\nat a time sequentially. Each executor is a"
Expand Down

0 comments on commit e14b9bb

Please sign in to comment.