Skip to content

Commit

Permalink
fix: Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
munshkr authored Feb 19, 2024
1 parent c4f9c98 commit 8af886c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions events/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."

0 comments on commit 8af886c

Please sign in to comment.