Skip to content

Commit a78276b

Browse files
committed
chores: Fix linter and format errors
1 parent c908268 commit a78276b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sessions/test_jwks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ def callback():
631631
from fastapi.testclient import TestClient
632632
from supertokens_python.framework.fastapi import get_middleware
633633
from supertokens_python.recipe.session.framework.fastapi import verify_session
634-
from supertokens_python.recipe.session.asyncio import create_new_session, get_session
634+
from supertokens_python.recipe.session.asyncio import create_new_session
635635
from supertokens_python.recipe.session import SessionContainer
636636

637637

@@ -647,7 +647,7 @@ async def login(request: Request): # type: ignore
647647
return {"jwt": s.get_access_token()}
648648

649649
@app.get("/sessioninfo")
650-
async def session_info(s: SessionContainer = Depends(verify_session())):
650+
async def info(s: SessionContainer = Depends(verify_session())): # type: ignore
651651
user_id = s.get_user_id()
652652
return {"user_id": user_id}
653653

0 commit comments

Comments
 (0)