Chore: thanks to bump-pydantic (#25437)
This commit is contained in:
parent
240b65b980
commit
2ac7a9c8fc
13 changed files with 28 additions and 28 deletions
|
|
@ -99,17 +99,17 @@ def _check_version_compatibility(imported_version: str) -> ImportStatus:
|
|||
class PendingData(BaseModel):
|
||||
import_mode: str
|
||||
yaml_content: str
|
||||
name: str | None
|
||||
description: str | None
|
||||
icon_type: str | None
|
||||
icon: str | None
|
||||
icon_background: str | None
|
||||
app_id: str | None
|
||||
name: str | None = None
|
||||
description: str | None = None
|
||||
icon_type: str | None = None
|
||||
icon: str | None = None
|
||||
icon_background: str | None = None
|
||||
app_id: str | None = None
|
||||
|
||||
|
||||
class CheckDependenciesPendingData(BaseModel):
|
||||
dependencies: list[PluginDependency]
|
||||
app_id: str | None
|
||||
app_id: str | None = None
|
||||
|
||||
|
||||
class AppDslService:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue