mirror of
https://github.com/Ladebeze66/llm_lab.git
synced 2025-12-16 21:27:49 +01:00
7 lines
98 B
Python
7 lines
98 B
Python
import textwrap
|
|
|
|
|
|
def DALS(s):
|
|
"dedent and left-strip"
|
|
return textwrap.dedent(s).lstrip()
|