Skip to content

Commit

Permalink
Docs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zakstucke committed Oct 19, 2023
1 parent 46fd6c9 commit 81d8fc9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/examples/creating_traces.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,14 @@ client.trace_create([
name="hr/power",
data={
"unit": "bpm",
"hr": [102, 110],
"power": [200, 210],
"hr": {
"unit": "bpm",
"values": [102, 110]
},
"power": {
"unit": "watts",
"values": [200, 210],
},
"timestamps": [
dt.datetime(2021, 1, 1),
dt.datetime(2021, 1, 2),
Expand Down

0 comments on commit 81d8fc9

Please sign in to comment.