We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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):
The text was updated successfully, but these errors were encountered:
This should be pushed to the current version, fixed everything wrong with the library not working.
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: