Skip to content

Commit

Permalink
Merge pull request #55 from infinity-cloud-solutions/add-requeriments…
Browse files Browse the repository at this point in the history
….txt

fix: lat and log optionals
  • Loading branch information
infinity-cloud-solutions authored May 23, 2024
2 parents 05683eb + 1093718 commit c057919
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 c057919

Please sign in to comment.