Files
2024-10-30 22:14:35 +01:00

7 lines
98 B
Python

import textwrap
def DALS(s):
"dedent and left-strip"
return textwrap.dedent(s).lstrip()