refactor: update module docstrings for clarity and consistency

This commit is contained in:
Abhimanyu Saharan
2026-02-09 15:49:50 +05:30
parent 78bb08d4a3
commit 7ca1899d9f
99 changed files with 2345 additions and 855 deletions

View File

@@ -1,5 +1,3 @@
from __future__ import annotations
from dataclasses import dataclass
from starlette.requests import Request
@@ -26,7 +24,11 @@ class ClerkHTTPBearer:
def __init__(
self,
config: ClerkConfig,
*,
auto_error: bool = ...,
add_state: bool = ...,
) -> None: ...
async def __call__(self, request: Request) -> HTTPAuthorizationCredentials | None: ...
async def __call__(
self,
request: Request,
) -> HTTPAuthorizationCredentials | None: ...