Chore: thanks to bump-pydantic (#25437)

This commit is contained in:
Yongtao Huang 2025-09-09 20:07:17 +08:00 committed by GitHub
commit 2ac7a9c8fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 28 additions and 28 deletions

View file

@ -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: