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/vitabel/utils/loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -2606,7 +2606,7 @@ def read_corpuls(f_corpuls): # Read Corpuls Data

for k, channel in enumerate(all_channels): # iterate htrough all channels
key = channel["label"]
sample_rate = channel["sample_rate"]
sample_rate = next(channel[k] for k in ("sample_rate", "sample_frequency") if k in channel)
dt = 1 / sample_rate
unit = channel["dimension"]
data = f.readSignal(k)
Expand Down
Loading