1import textwrap
2
3
4def DALS(s):
5    "dedent and left-strip"
6    return textwrap.dedent(s).lstrip()
7