From f51423aa42c0d66eca7ada98f3c5fa97899598dc Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Mon, 12 Aug 2024 23:04:24 +0100 Subject: [PATCH] Fix multiline for python 3.11 --- py/matchy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/matchy.py b/py/matchy.py index 4f91fc4..f75a7c5 100755 --- a/py/matchy.py +++ b/py/matchy.py @@ -121,8 +121,8 @@ async def list(interaction: discord.Interaction): for (day, hour, min) in tasks: next_run = util.get_next_datetime(day, hour) date_str = util.format_day(next_run) - msg += f"\nNext scheduled for {date_str} at { - hour:02d}:00 with {min} members per group" + msg += f"\nNext scheduled for {date_str} at {hour:02d}:00" + + "with {min} members per group" await interaction.response.send_message(msg, ephemeral=True, silent=True)