Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hrm/bt_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ async def get_heart_rate(self) -> int:
start_time = time.time() - 10
end_time = start_time + 10

# round up by ceilling to the nearest integer
# round up by ceiling to the nearest integer
return {"avg_hr": math.ceil(self.db.avg(start_time, end_time))}

def get_heart_rate_bucket(
Expand Down