Open russellaugust opened 1 year ago
From a short bit of experimenting, to get this running on python3, this line just needs updating:
https://github.com/simonh10/python-edl/blob/a7185fc6b3e9b554fb802cc63853981823125a72/edl/__init__.py#LL567C18-L567C18
if isinstance(input_, collections.Iterable):
to
if isinstance(input_, collections.abc.Iterable):
This should be pushed to the current version, fixed everything wrong with the library not working.
From a short bit of experimenting, to get this running on python3, this line just needs updating:
https://github.com/simonh10/python-edl/blob/a7185fc6b3e9b554fb802cc63853981823125a72/edl/__init__.py#LL567C18-L567C18
to