Files
2026-03-30 07:59:11 +02:00

7 lines
98 B
Python

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