Skip to content

Commit

Permalink
fix: lat and log optionals
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoBurgos committed May 23, 2024
1 parent 51d0487 commit 1093718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clients/client_modules/models/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@


class Geolocation(BaseModel):
latitude: StrictFloat
longitude: StrictFloat
latitude: StrictFloat | None = None
longitude: StrictFloat | None = None


class HIBerryBaseClient(BaseModel):
Expand Down

0 comments on commit 1093718

Please sign in to comment.