Skip to content

Commit

Permalink
fix(reader.qc): return data, info, not just info
Browse files Browse the repository at this point in the history
  • Loading branch information
chanshing committed Oct 23, 2024
1 parent fd8e171 commit 029dd21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actipy/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def qc(data, sample_rate):
info['WearTime(days)'] = 0
info['NumInterrupts'] = 0
info['ReadErrors'] = 0
return info
return data, info

# Start/end times, wear time, interrupts
tol = pd.Timedelta('1s')
Expand Down

0 comments on commit 029dd21

Please sign in to comment.