Skip to content

Commit

Permalink
πŸ› City can be None
Browse files Browse the repository at this point in the history
  • Loading branch information
MariteSomEnergia authored and vokimon committed May 27, 2024
1 parent 91aef96 commit 2af9d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def data(self):
class UserProfile(TokenUser):
avatar: str | None = None
address: str
city: str
city: str | None = None
zip: str
state: str
phones: list[str]
Expand All @@ -115,7 +115,7 @@ class InstallationSummary(BaseModel):
class InstallationDetails(BaseModel):
address: str
cil: str
city: str
city: str | None = None
contract_number: str
coordinates: str | None = None
ministry_code: str
Expand Down

0 comments on commit 2af9d55

Please sign in to comment.