Skip to content

Commit

Permalink
gender must not be null
Browse files Browse the repository at this point in the history
  • Loading branch information
Adibuer-lab committed Jun 27, 2024
1 parent 1e864a7 commit 20e44d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/users/src/users_service/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class User:
addresses: List[Address] = field(default_factory=list)
age: int = 0
age_range: Optional[str] = "0"
gender: str = None
gender: str = "gender"
persona: str = "0_0"
discount_persona: str = None
selectable_user: Optional[bool] = None
Expand Down

0 comments on commit 20e44d7

Please sign in to comment.