fix: riff lint errors

This commit is contained in:
Boris Arzentar 2025-05-21 18:30:10 +02:00
parent 950195223e
commit 7df1daee71
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ def get_cognify_router() -> APIRouter:
try:
await get_authenticated_user(auth_message.get("Authorization"))
except Exception as error:
except Exception:
await websocket.close(code=WS_1008_POLICY_VIOLATION, reason="Unauthorized")
return

View file

@ -1,2 +1,2 @@
from .PipelineRun import PipelineRun, PipelineRunStatus
from .PipelineRunInfo import *
from .PipelineRunInfo import PipelineRunInfo, PipelineRunStarted, PipelineRunYield, PipelineRunCompleted, PipelineRunErrored