fix code style

This commit is contained in:
stkevintan
2025-12-22 08:33:23 +08:00
parent 501d530d1d
commit 2c849cfa7a
+1 -2
View File
@@ -128,8 +128,7 @@ async def get_cookie(
@cookie_router.post("/get/{uuid}") @cookie_router.post("/get/{uuid}")
async def post_cookie( async def post_cookie(
uuid: Annotated[str, Path(min_length=5, pattern="^[a-zA-Z0-9]+$")], uuid: Annotated[str, Path(min_length=5, pattern="^[a-zA-Z0-9]+$")],
request: Optional[schemas.CookiePassword] = Body(None) request: Optional[schemas.CookiePassword] = Body(None)):
):
""" """
POST 下载加密数据 POST 下载加密数据
""" """