Files

7 lines
98 B
Python
Raw Permalink Normal View History

2026-04-19 20:41:37 +02:00
import textwrap
def DALS(s):
"dedent and left-strip"
return textwrap.dedent(s).lstrip()