You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as described here, in python 3.9 the method xml.etree.ElementTree.Element.getchildren does not work anymore, and throws an error when running module-run.py with python 3.9 with default parameters (only -dev=-1 for cpu)
You have to change to code from notations = self.xml_notations.getchildren() to notations = list(self.xml_notations) in order for it to work.
You also have to change child_list = direction.find('direction-type').getchildren() to child_list = list(direction.find('direction-type')) in direction.py.
as described here, in python 3.9 the method
xml.etree.ElementTree.Element.getchildren
does not work anymore, and throws an error when runningmodule-run.py
with python 3.9 with default parameters (only-dev=-1
for cpu)The text was updated successfully, but these errors were encountered: