From 42524cb4343aff48975c982c27a7430ee32fb98e Mon Sep 17 00:00:00 2001 From: Sakimori Date: Thu, 31 Dec 2020 13:59:30 -0500 Subject: [PATCH] removed an unused user.mention --- the_prestige.py | 1 - 1 file changed, 1 deletion(-) diff --git a/the_prestige.py b/the_prestige.py index 819bcbf..b0df472 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -145,7 +145,6 @@ class StartGameCommand(Command): if team1 is not None and team2 is not None: game = games.game(msg.author.name, team1, team2, length=innings) channel = msg.channel - user_mention = msg.author.mention await msg.delete() game_task = asyncio.create_task(watch_game(channel, game, user=msg.author))