I\'m trying to import xml.dom.minidom but pycharm doesn\'t find it, altough it finds xml.entree / xml.parser / xml.sax.
The rest of the standart libraries work all f
My recommendation is to just put the following around the imports until Pycharm fixes the bug.
# noinspection PyUnresolvedReferences from xml.dom.minidom import Document # noinspection PyUnresolvedReferences from xml.dom.minidom import Element