mirror of
https://github.com/jbowdre/phpIPAM-for-vRA8.git
synced 2024-11-27 01:12:19 +00:00
6 lines
98 B
Python
6 lines
98 B
Python
import textwrap
|
|
|
|
|
|
def DALS(s):
|
|
"dedent and left-strip"
|
|
return textwrap.dedent(s).lstrip()
|