fix assignment error reported by mypy

This commit is contained in:
italojohnny 2024-06-20 22:02:15 -03:00
commit 080dc7b327

View file

@ -147,7 +147,7 @@ class Output(BaseModel):
selected: Optional[str] = Field(default=None)
"""The selected output type for the field."""
name: str = Field(default=None)
name: Optional[str] = Field(default=None)
"""The name of the field."""
hidden: Optional[bool] = Field(default=None)