rhenanbartels / hrv

A Python package for heart rate variability analysis
BSD 3-Clause "New" or "Revised" License
198 stars 58 forks source link

MutableMapping can no longer be imported via collections #31

Open YoavMeiri opened 1 year ago

YoavMeiri commented 1 year ago

When running from hrv.rri import RRi The error was [cannot import name 'MutableMapping' from 'collections']

Might want to change line 18 in rri.py to from collections.abc import MutableMapping

(python 3.11.3)