mirror of
https://github.com/jbowdre/phpIPAM-for-vRA8.git
synced 2024-11-27 09:22:19 +00: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()
|