mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #5773 from ynput/bugfix/ayon-applications-tools-settings
AYON settings: Fix default factory of tools
This commit is contained in:
commit
326f92bc42
2 changed files with 2 additions and 4 deletions
|
|
@ -115,9 +115,7 @@ class ToolGroupModel(BaseSettingsModel):
|
|||
name: str = Field("", title="Name")
|
||||
label: str = Field("", title="Label")
|
||||
environment: str = Field("{}", title="Environments", widget="textarea")
|
||||
variants: list[ToolVariantModel] = Field(
|
||||
default_factory=ToolVariantModel
|
||||
)
|
||||
variants: list[ToolVariantModel] = Field(default_factory=list)
|
||||
|
||||
@validator("environment")
|
||||
def validate_json(cls, value):
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.1.1"
|
||||
__version__ = "0.1.2"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue