Skip to content

Commit

Permalink
Fix InertialLocation attributes types
Browse files Browse the repository at this point in the history
Signed-off-by: patrickpa <[email protected]>
  • Loading branch information
patrickpa committed Jun 10, 2024
1 parent 84e9737 commit 4f165e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qc_baselib/models/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class XMLLocationType(BaseXmlModel, tag="XMLLocation"):


class InertialLocationType(BaseXmlModel, tag="InertialLocation"):
x: str
y: str
z: str
x: float
y: float
z: float


class FileLocationType(BaseXmlModel, tag="FileLocation"):
Expand Down

0 comments on commit 4f165e1

Please sign in to comment.