diff --git a/schemas/auth.py b/schemas/auth.py index 71f4d44..e0f2a3e 100644 --- a/schemas/auth.py +++ b/schemas/auth.py @@ -1,3 +1,5 @@ +from typing import Optional + from schemas.base import BaseSchema, CustomModelSnake @@ -6,7 +8,7 @@ class AuthLoginRequest(CustomModelSnake): first_name: str hash: str id: int - photo_url: str + photo_url: Optional[str] class AuthLoginResponse(BaseSchema):