🐛 fix(base.py): make description field optional to allow for cases where no description is provided
This commit is contained in:
parent
9b36e64c57
commit
275e10daf6
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ class FieldFormatters(BaseModel):
|
|||
|
||||
class FrontendNode(BaseModel):
|
||||
template: Template
|
||||
description: str
|
||||
description: Optional[str] = None
|
||||
base_classes: List[str]
|
||||
name: str = ""
|
||||
display_name: str = ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue