EdinburghGenomics / pyclarity-lims

Python interface to the GenoLogics LIMS server via its REST API.
MIT License
11 stars 5 forks source link

Python >= 3.9 does not have xml.etree.ElementTree.getchildren() method #59

Open rich7409 opened 1 year ago

rich7409 commented 1 year ago

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?