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
I was needing to update the code for another issue and tried on Python 3.9. It doesn't work because of line 648 of lims.py:
for node in root.getchildren():
The documentation for ETree says this should be:
for node in list(root):
As an addendum, I see from issue 58 from last year that this repository may well be dead. Is it time to move to SciLifeLabs original repository?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was needing to update the code for another issue and tried on Python 3.9. It doesn't work because of line 648 of lims.py:
The documentation for ETree says this should be:
As an addendum, I see from issue 58 from last year that this repository may well be dead. Is it time to move to SciLifeLabs original repository?
The text was updated successfully, but these errors were encountered: