Skip to content

Commit

Permalink
fix - iterable join
Browse files Browse the repository at this point in the history
  • Loading branch information
jjpaulo2 committed Oct 2, 2024
1 parent 6f797aa commit 4a53dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion function/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def get_domain(url: str) -> str:


def join_lines(*lines_list: str) -> str:
return "\n\n".join(*lines_list)
return "\n\n".join(lines_list)


# Fixes PEER_ID_INVALID for channels
Expand Down

0 comments on commit 4a53dea

Please sign in to comment.