Files

7 lines
98 B
Python
Raw Permalink Normal View History

2026-03-25 22:03:39 +01:00
import textwrap
def DALS(s):
"dedent and left-strip"
return textwrap.dedent(s).lstrip()