diff --git a/Backend-libXML/Parser.py b/Backend-libXML/Parser.py index 2f44980..295b924 100644 --- a/Backend-libXML/Parser.py +++ b/Backend-libXML/Parser.py @@ -9,7 +9,7 @@ def minimize(source: str) -> str: result = source to_remove = [" ", " ", "\t", "\n"] - to_substitute = [(" <", "<"), ("> ", ">"), (" ", ">"), ("", ">")] for chars in to_remove: result = result.replace(chars, "")