fix: default option in attributes

This commit is contained in:
2025-11-03 10:43:10 +04:00
parent be878717e5
commit a7bda3d9f6
6 changed files with 24 additions and 21 deletions

View File

@ -1,5 +1,3 @@
from typing import Any
from schemas.base import BaseSchema
@ -15,7 +13,6 @@ class AttrSelectSchema(BaseSchema):
class AttrOptionSchema(BaseSchema):
id: int
label: str
value: Any
class AttrSelectWithOptionsSchema(AttrSelectSchema):