mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 05:02:49 +00:00
Update the default value for some functions (#573)
* Update the default value for some functions * Fix lint
This commit is contained in:
@@ -28,7 +28,7 @@ class DictDataService:
|
||||
return dict_data
|
||||
|
||||
@staticmethod
|
||||
async def get_select(*, label: str | None = None, value: str | None = None, status: int | None = None) -> Select:
|
||||
async def get_select(*, label: str | None, value: str | None, status: int | None) -> Select:
|
||||
"""
|
||||
获取字典数据列表查询条件
|
||||
|
||||
|
||||
Reference in New Issue
Block a user