main: Made marriage display more readable

This commit is contained in:
Yuki Joou 2023-02-26 16:50:15 +01:00
parent 64d13998cf
commit 2217afffed

View file

@ -81,7 +81,7 @@ async def marriage(
await context.respond(f"{who_to_check.mention} is not married yet :(") await context.respond(f"{who_to_check.mention} is not married yet :(")
return return
marriage_formatted = '💞'.join( marriage_formatted = ' 💞 '.join(
[f"<@{user}>" for user in marriage] [f"<@{user}>" for user in marriage]
) )
await context.respond(marriage_formatted) await context.respond(marriage_formatted)