Fix multiline for python 3.11
This commit is contained in:
parent
07485ceb8d
commit
f51423aa42
1 changed files with 2 additions and 2 deletions
|
@ -121,8 +121,8 @@ async def list(interaction: discord.Interaction):
|
||||||
for (day, hour, min) in tasks:
|
for (day, hour, min) in tasks:
|
||||||
next_run = util.get_next_datetime(day, hour)
|
next_run = util.get_next_datetime(day, hour)
|
||||||
date_str = util.format_day(next_run)
|
date_str = util.format_day(next_run)
|
||||||
msg += f"\nNext scheduled for {date_str} at {
|
msg += f"\nNext scheduled for {date_str} at {hour:02d}:00"
|
||||||
hour:02d}:00 with {min} members per group"
|
+ "with {min} members per group"
|
||||||
|
|
||||||
await interaction.response.send_message(msg, ephemeral=True, silent=True)
|
await interaction.response.send_message(msg, ephemeral=True, silent=True)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue