I tried using the following:
import xml.etree.ElementTree as ET
but flake8
with pep8-naming
gives the following warning:
N817 camelcase 'xml.etree.ElementTree' imported as acronym 'ET'
then I tried:
import xml.etree.ElementTree as et
import xml.etree.ElementTree as element_tree
but yet again:
N813 camelcase 'xml.etree.ElementTree' imported as lowercase 'et'
What does flake8 want here?
N817
on that line with# noqa: N817
if you don't care – Homework