stip take text to new line and then remove spaces in python code example
Example: remove extra spaces and empty lines from string python
"\n".join([s for s in code.split("\n") if s])
"\n".join([s for s in code.split("\n") if s])