What's the easiest way to write an edited XML root to a new file? This is what I have so far and it's throwing AttributeError: 'module' object has no attribute 'write'
PS: I can't use any other api besides ElementTree.
import xml.etree.ElementTree as ET
from xml.etree.ElementTree import Element, SubElement, Comment
from ElementTree_pretty import prettify
tree = ET.parse('file-to-be-edited.xml')
root = tree.getroot()
#Process XML here
ET.write('file-after-edits.xml')