Cosmetic changes (pylint)

This commit is contained in:
Unrud 2020-01-17 12:45:01 +01:00
parent 7aca052859
commit 0fb02cd026
19 changed files with 85 additions and 105 deletions

View file

@ -63,7 +63,7 @@ def pretty_xml(element, level=0):
if not level:
element = copy.deepcopy(element)
i = "\n" + level * " "
if len(element):
if len(element) > 0:
if not element.text or not element.text.strip():
element.text = i + " "
if not element.tail or not element.tail.strip():