← Back to context

Comment by simonw

3 years ago

Spotted this in the code:

    def _left_pad(text, indent="    "):
        """Maybe I can find a package in pypi for this?"""
        return "\n".join(indent + line for line in text.split('\n'))

You can use the textwrap module from the Python standard library for this:

    textwrap.indent('hello\nthis\n  is a demo', '    ')
    # '    hello\n    this\n      is a demo'

Ha! I use `textwrap.dedent` all the time but didn't make the leap of logic to check for the existence of `indent`. :-)

I suspect this was a leftover from Python 2.7 days.