mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
🐶 fix line length
This commit is contained in:
parent
bdb0a10890
commit
681301bf8c
1 changed files with 8 additions and 4 deletions
|
|
@ -120,10 +120,14 @@ class SourceApplication(TraitBase):
|
||||||
description: ClassVar[str] = "Source Application Trait Model"
|
description: ClassVar[str] = "Source Application Trait Model"
|
||||||
id: ClassVar[str] = "ayon.meta.SourceApplication.v1"
|
id: ClassVar[str] = "ayon.meta.SourceApplication.v1"
|
||||||
application: str = Field(..., title="Application Name")
|
application: str = Field(..., title="Application Name")
|
||||||
variant: Optional[str] = Field(None, title="Application Variant (e.g. Pro)")
|
variant: Optional[str] = Field(
|
||||||
version: Optional[str] = Field(None, title="Application Version")
|
None, title="Application Variant (e.g. Pro)")
|
||||||
platform: Optional[str] = Field(None, title="Platform Name (e.g. Windows)")
|
version: Optional[str] = Field(
|
||||||
host_name: Optional[str] = Field(None, title="AYON host Name if applicable")
|
None, title="Application Version")
|
||||||
|
platform: Optional[str] = Field(
|
||||||
|
None, title="Platform Name (e.g. Windows)")
|
||||||
|
host_name: Optional[str] = Field(
|
||||||
|
None, title="AYON host Name if applicable")
|
||||||
|
|
||||||
|
|
||||||
class IntendedUse(TraitBase):
|
class IntendedUse(TraitBase):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue