diff options
author | 2023-11-09 10:09:20 +0000 | |
---|---|---|
committer | 2023-11-13 14:42:19 +0000 | |
commit | a6a8f8ed9b4f6daa454703286250b1d2b72e85a6 (patch) | |
tree | d30020e77e59a891cb36f6f2ce922eef16535c28 /bot/exts/fun/tic_tac_toe.py | |
parent | Bump ruff from 0.1.4 to 0.1.5 (diff) |
Lint repo with new ruff rules
Diffstat (limited to 'bot/exts/fun/tic_tac_toe.py')
-rw-r--r-- | bot/exts/fun/tic_tac_toe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/tic_tac_toe.py b/bot/exts/fun/tic_tac_toe.py index f6ee6293..f249c072 100644 --- a/bot/exts/fun/tic_tac_toe.py +++ b/bot/exts/fun/tic_tac_toe.py @@ -156,7 +156,7 @@ class Game: ) try: - reaction, user = await self.ctx.bot.wait_for( + reaction, _ = await self.ctx.bot.wait_for( "reaction_add", timeout=60.0, check=confirm_check |