Skip to content

Commit

Permalink
Fix InputItem pydantic model
Browse files Browse the repository at this point in the history
  • Loading branch information
neoformit committed Dec 16, 2024
1 parent 473272d commit 4cadf91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/labs/lab_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def html_tags(v: str) -> str:

class ItemInput(BaseModel):
"""An expected dataset input for a Galaxy tool."""
datatypes: list[str]
label: str
datatypes: Optional[list[str]] = []
label: Optional[str] = ''


class IconEnum(str, Enum):
Expand Down

0 comments on commit 4cadf91

Please sign in to comment.