Merge branch 'fix/chore-fix' into dev/plugin-deploy

This commit is contained in:
Yeuoly 2024-12-27 18:37:54 +08:00
commit 4fb5cf675b
2 changed files with 2 additions and 1 deletions

View File

@ -62,6 +62,7 @@ class PluginParameter(BaseModel):
default: Optional[Union[float, int, str]] = None
min: Optional[Union[float, int]] = None
max: Optional[Union[float, int]] = None
precision: Optional[int] = None
options: list[PluginParameterOption] = Field(default_factory=list)
@field_validator("options", mode="before")

View File

@ -12,7 +12,7 @@ import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'ddcc8bbef391'
down_revision = 'd7999dfa4aae' # HEAD OF PLUGIN BRANCH
down_revision = '923752d42eb6' # HEAD OF PLUGIN BRANCH
branch_labels = None
depends_on = None