fix: riff lint errors
This commit is contained in:
parent
950195223e
commit
7df1daee71
2 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@ def get_cognify_router() -> APIRouter:
|
||||||
|
|
||||||
try:
|
try:
|
||||||
await get_authenticated_user(auth_message.get("Authorization"))
|
await get_authenticated_user(auth_message.get("Authorization"))
|
||||||
except Exception as error:
|
except Exception:
|
||||||
await websocket.close(code=WS_1008_POLICY_VIOLATION, reason="Unauthorized")
|
await websocket.close(code=WS_1008_POLICY_VIOLATION, reason="Unauthorized")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
from .PipelineRun import PipelineRun, PipelineRunStatus
|
from .PipelineRun import PipelineRun, PipelineRunStatus
|
||||||
from .PipelineRunInfo import *
|
from .PipelineRunInfo import PipelineRunInfo, PipelineRunStarted, PipelineRunYield, PipelineRunCompleted, PipelineRunErrored
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue