1
0
Fork 0
mirror of synced 2024-06-15 21:51:10 -04:00
dotbot/dotbot/util/string.py

5 lines
181 B
Python
Raw Normal View History

2022-01-30 18:48:30 -05:00
def indent_lines(string, amount=2, delimiter="\n"):
whitespace = " " * amount
sep = f"{delimiter}{whitespace}"
return f"{whitespace}{sep.join(string.split(delimiter))}"