diff --git a/src/utils/openmc/clean_xml.py b/src/utils/openmc/clean_xml.py index 437c2df15..619475fa0 100644 --- a/src/utils/openmc/clean_xml.py +++ b/src/utils/openmc/clean_xml.py @@ -66,11 +66,11 @@ def sort_xml_elements(tree): def clean_xml_indentation(element, level=0): - ''' + """ copy and paste from http://effbot.org/zone/elementent-lib.htm#prettyprint it basically walks your tree and adds spaces and newlines so the tree is printed in a nice way - ''' + """ i = "\n" + level*" "