Add missing asyncio imports from the examples

This commit is contained in:
Capn 2018-10-12 14:03:33 -05:00 committed by Rapptz
parent 1c3a5831f9
commit dd5762d9ed
3 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import discord
import asyncio
class MyClient(discord.Client):
def __init__(self, *args, **kwargs):

View File

@ -1,4 +1,5 @@
import discord
import asyncio
class MyClient(discord.Client):
async def on_ready(self):

View File

@ -1,5 +1,6 @@
import discord
import random
import asyncio
class MyClient(discord.Client):
async def on_ready(self):