Skip to content

Commit

Permalink
Use a newline break between chains for easier reading
Browse files Browse the repository at this point in the history
  • Loading branch information
HaydenReeve committed Nov 18, 2024
1 parent 7ff0415 commit 394b238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BetterString.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ def action(self, string, chain="", ):
if chain[-1] != ",":
chain += ","

chain += " "
chain += "\n\n"

return (chain + string,)

FUNCTION = action.__name__
RETURN_TYPES = ("STRING",)
CATEGORY = "Better Things 💡"
CATEGORY = "Better Things 💡"

0 comments on commit 394b238

Please sign in to comment.