From 0f541291f2e6a3c35302d110d219c90200294d5b Mon Sep 17 00:00:00 2001 From: ddorn Date: Sat, 23 May 2020 22:45:09 +0200 Subject: [PATCH] :poop: improved bad code --- src/cogs/teams.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/cogs/teams.py b/src/cogs/teams.py index 2639020..f633b01 100644 --- a/src/cogs/teams.py +++ b/src/cogs/teams.py @@ -114,13 +114,12 @@ class TeamsCog(Cog, name="Teams"): touriste_role = get(guild.roles, name=Role.TOURIST) if tournoi == "Finale": - # we don't give the "Finaliste" role to the tourists, it would give them rights. - # to simplify branching we assign twice "Touriste" - touriste_role = touriste_role + # we don't give the "Finaliste" role to the tourists, it would give them rights.1 + roles = (touriste_role,) + else: + roles = touriste_role, tournoi_role - await ctx.author.add_roles( - touriste_role, tournoi_role, reason="Demande via le bot." - ) + await ctx.author.add_roles(*roles, reason="Demande via le bot.") return f"{ctx.author.mention} à été ajouté comme spectateur pour {tournoi}."