Skip to content

Commit

Permalink
refactor: make TesFileType optional
Browse files Browse the repository at this point in the history
  • Loading branch information
athith-g committed Jun 21, 2024
1 parent edb2f75 commit d5e059c
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 @@ -189,7 +189,7 @@ class TesInput(CustomBaseModel):
),
examples=["/data/file1"],
)
type: TesFileType
type: Optional[TesFileType] = "FILE"
content: Optional[str] = Field(
default=None,
description=(
Expand Down Expand Up @@ -228,7 +228,7 @@ class TesOutput(CustomBaseModel):
" absolute path."
),
)
type: TesFileType
type: Optional[TesFileType] = "FILE"


class TesOutputFileLog(CustomBaseModel):
Expand Down

0 comments on commit d5e059c

Please sign in to comment.