refactor: improve variable naming and add comments for clarity in models and services
Test / test (push) Successful in 15s

This commit is contained in:
Artem Kashaev
2025-12-01 16:24:23 +05:00
parent 1039fba571
commit dc0046c730
8 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ class TokenPayload(BaseModel):
class TokenResponse(BaseModel):
access_token: str
refresh_token: str
token_type: str = "bearer"
token_type: str = "bearer" # noqa: S105 -- OAuth2 spec default value
expires_in: int
refresh_expires_in: int