refactor(base.py): change default value of advanced field from True to False in TemplateFieldCreator class
This commit is contained in:
parent
00a766f314
commit
a44f6123a3
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ class TemplateFieldCreator(BaseModel, ABC):
|
|||
options: list[str] = []
|
||||
name: str = ""
|
||||
display_name: Optional[str] = None
|
||||
advanced: bool = True
|
||||
advanced: bool = False
|
||||
|
||||
def to_dict(self):
|
||||
result = self.dict()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue