Skip to content

Commit

Permalink
Merge pull request #58 from marcelbarbulescu/fix/rowSpm-snake-case
Browse files Browse the repository at this point in the history
Fix/lowercase `row_spm`
  • Loading branch information
NodeJSmith authored Oct 14, 2024
2 parents 28b51a4 + d54beb4 commit fc25a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/otf_api/models/telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class TreadData(OtfItemBase):
class RowData(OtfItemBase):
row_speed: float = Field(..., alias="rowSpeed")
row_pps: float = Field(..., alias="rowPps")
row_Spm: float = Field(..., alias="rowSpm")
row_spm: float = Field(..., alias="rowSpm")
agg_row_distance: int = Field(..., alias="aggRowDistance")
row_pace: int = Field(..., alias="rowPace")

Expand Down

0 comments on commit fc25a6b

Please sign in to comment.