Spaces:
Runtime error
Runtime error
File size: 376 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from typing import Optional
def remove_indent(s: Optional[str]) -> Optional[str]:
"""
Remove the indent from a string.
Args:
s (str): String to remove indent from
Returns:
str: String with indent removed
"""
if s is not None and isinstance(s, str):
return "\n".join([line.strip() for line in s.split("\n")])
return None
|