6 lines
92 B
Python
6 lines
92 B
Python
from textwrap import dedent
|
|
|
|
|
|
def lines_dedent(s: str) -> str:
|
|
return dedent(s).strip()
|