7 lines
98 B
Python
Raw Normal View History

2026-07-19 20:46:25 +02:00
import textwrap
def DALS(s):
"dedent and left-strip"
return textwrap.dedent(s).lstrip()