From 8af886c66f3f479a80f414ee7483447a466509e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Silvani?= Date: Mon, 19 Feb 2024 07:54:44 -0300 Subject: [PATCH] fix: Update utils.py --- events/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/events/utils.py b/events/utils.py index 5f4143a..fe67e1c 100644 --- a/events/utils.py +++ b/events/utils.py @@ -26,9 +26,9 @@ def get_formatted_stream_timeframe(stream): def get_support_channels_test(stream): if stream.event.support_urls.exists(): return ( - "Streaming documentation and support links.\n - If you have any questions, please reach out to our support channel:\n" - + "\n".join(f"* {u.name}: {u.url}" for u in stream.event.support_urls.all()) + "Streaming documentation and support links.\n" + "If you have any questions, please reach out to our support channel:\n" + "\n".join(f"* {u.name}: {u.url}" for u in stream.event.support_urls.all()) ) else: return "If you have any questions, please reach out to our support channel."