ComputationalPhysiology/ap_features

`__repr__` is not called correctly for `Beats` when passing in a list

Closed this issue · 1 comments

If you try to do the following

import ap_feautures as apt

b = Beats(t=[0, 1], y=[0, 1])
print(repr(b))

You will get an error saying that t and y does not have an attribute .shape

Fixed in #48