diff options
| author | Capn <[email protected]> | 2018-10-12 14:03:33 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-11-24 22:17:58 -0500 |
| commit | dd5762d9ed540c4cf65dd945b1e224528f36a330 (patch) | |
| tree | 7c9c3594a359399d145869a513ba2ec830ef24af /examples/edits.py | |
| parent | [lint] Removed unused variable handler (diff) | |
| download | discord.py-dd5762d9ed540c4cf65dd945b1e224528f36a330.tar.xz discord.py-dd5762d9ed540c4cf65dd945b1e224528f36a330.zip | |
Add missing asyncio imports from the examples
Diffstat (limited to 'examples/edits.py')
| -rw-r--r-- | examples/edits.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/edits.py b/examples/edits.py index 911c582f..2c1db4d9 100644 --- a/examples/edits.py +++ b/examples/edits.py @@ -1,4 +1,5 @@ import discord +import asyncio class MyClient(discord.Client): async def on_ready(self): |