ci: fix lint error

This commit is contained in:
100gle
2023-06-07 20:58:11 +08:00
parent f317da890e
commit 60a66fca69
15 changed files with 27 additions and 29 deletions

View File

@@ -61,7 +61,7 @@ async def stop(current_user=Depends(get_current_user)):
@router.get("/api/v1/status", tags=["program"])
async def status(current_user=Depends(get_current_user)):
async def program_status(current_user=Depends(get_current_user)):
if not current_user:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED, detail="invalid token"