aboutsummaryrefslogtreecommitdiff
path: root/examples/guessing_game.py
diff options
context:
space:
mode:
authorModelmat <[email protected]>2018-05-06 11:15:20 +1000
committerRapptz <[email protected]>2018-08-22 21:06:09 -0400
commit1436af3b182b9d4913d2c1beabc36450457e1328 (patch)
tree89751e45a7392ff812bc47d1b44b6986706b0c47 /examples/guessing_game.py
parent[commands] Ignore bots from Bot.process_commands by default. (diff)
downloaddiscord.py-1436af3b182b9d4913d2c1beabc36450457e1328.tar.xz
discord.py-1436af3b182b9d4913d2c1beabc36450457e1328.zip
Removes redundant asyncio import
Not much point importing asyncio when it's not being used, it was there for when @asyncio.coroutine was used previously
Diffstat (limited to 'examples/guessing_game.py')
-rw-r--r--examples/guessing_game.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/guessing_game.py b/examples/guessing_game.py
index a8f09c63..50f0371b 100644
--- a/examples/guessing_game.py
+++ b/examples/guessing_game.py
@@ -1,6 +1,5 @@
import discord
import random
-import asyncio
class MyClient(discord.Client):
async def on_ready(self):