refactor: add type hints to function signatures across multiple files

This commit is contained in:
grillazz
2026-07-13 14:25:49 +02:00
parent 51f0cebabe
commit eb8acd7b7c
10 changed files with 27 additions and 15 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ async def verify_jwt(request: Request, token: str) -> bool:
class AuthBearer(HTTPBearer):
def __init__(self, auto_error: bool = True):
def __init__(self, auto_error: bool = True) -> None:
super().__init__(auto_error=auto_error)
async def __call__(self, request: Request):