aboutsummaryrefslogtreecommitdiff
path: root/examples/guessing_game.py
diff options
context:
space:
mode:
authorCapn <[email protected]>2018-10-12 14:03:33 -0500
committerRapptz <[email protected]>2018-11-24 22:17:58 -0500
commitdd5762d9ed540c4cf65dd945b1e224528f36a330 (patch)
tree7c9c3594a359399d145869a513ba2ec830ef24af /examples/guessing_game.py
parent[lint] Removed unused variable handler (diff)
downloaddiscord.py-dd5762d9ed540c4cf65dd945b1e224528f36a330.tar.xz
discord.py-dd5762d9ed540c4cf65dd945b1e224528f36a330.zip
Add missing asyncio imports from the examples
Diffstat (limited to 'examples/guessing_game.py')
-rw-r--r--examples/guessing_game.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/guessing_game.py b/examples/guessing_game.py
index 50f0371b..a8f09c63 100644
--- a/examples/guessing_game.py
+++ b/examples/guessing_game.py
@@ -1,5 +1,6 @@
import discord
import random
+import asyncio
class MyClient(discord.Client):
async def on_ready(self):