Skip to content

Commit

Permalink
fix reference to dna
Browse files Browse the repository at this point in the history
  • Loading branch information
NodeJSmith committed Jun 13, 2024
1 parent bc044fb commit 2b6443c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ async def main():
# telemetry is a detailed record of a specific workout - minute by minute, or more granular if desired
# this endpoint takes a class_history_uuid, as well as a number of max data points - if you do not pass
# this value it will attempt to return enough data points for 30 second intervals
telemetry = await otf.dna_api.get_telemetry(workouts.workouts[0].class_history_uuid)
telemetry = await otf.telemetry_api.get_telemetry(workouts.workouts[0].class_history_uuid)
print(json.dumps(telemetry.model_dump(), indent=4, default=str))

"""
Expand Down

0 comments on commit 2b6443c

Please sign in to comment.