From 4a53dea37e94ed189d6044078e9f42b21d9be33c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Carvalho?= Date: Wed, 2 Oct 2024 16:32:06 -0300 Subject: [PATCH] fix - iterable join --- function/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/function/utils.py b/function/utils.py index 2d4e703..c21a3e6 100644 --- a/function/utils.py +++ b/function/utils.py @@ -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