Skip to content

Commit 23bf9df

Browse files
fix: fix lint errors in api.py
1 parent ab77fb7 commit 23bf9df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/src/users/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Any
22

3-
from fastapi import APIRouter, HTTPException, Request
3+
from fastapi import APIRouter, HTTPException
44

55
from src.auth.services import CurrentUser, SessionDep
66
from src.core.config import settings
@@ -12,7 +12,7 @@
1212

1313

1414
@router.get("/me", response_model=UserPublic)
15-
def read_user_me(request: Request, current_user: CurrentUser) -> Any:
15+
def read_user_me(current_user: CurrentUser) -> Any:
1616
"""
1717
Get current user.
1818
"""

0 commit comments

Comments
 (0)