Skip to content

Commit

Permalink
Fix typing: Wrong type in annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Apr 9, 2024
1 parent a355428 commit a6508f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aleph/vm/orchestrator/views/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ async def authenticate_websocket_message(message) -> str:

def require_jwk_authentication(
handler: Callable[[web.Request, str], Coroutine[Any, Any, web.StreamResponse]]
) -> Callable[[web.Response], Awaitable[web.StreamResponse]]:
) -> Callable[[web.Request], Awaitable[web.StreamResponse]]:
@functools.wraps(handler)
async def wrapper(request):
try:
Expand Down

0 comments on commit a6508f1

Please sign in to comment.