Skip to content

Commit

Permalink
Make flatten string tool strip output
Browse files Browse the repository at this point in the history
  • Loading branch information
ejohb committed Jan 9, 2025
1 parent 3401f77 commit 47b7650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions fmtr/tools/string_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ def flatten(raw):
"""
lines = raw.splitlines()
text = ' '.join(lines)
text = text.strip()
return text


Expand Down
2 changes: 1 addition & 1 deletion fmtr/tools/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.8
1.0.9

0 comments on commit 47b7650

Please sign in to comment.