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
This commit is contained in:
Modelmat 2018-05-06 11:15:20 +10:00 committed by Rapptz
parent aa7c5c3ec1
commit 1436af3b18
3 changed files with 0 additions and 3 deletions

View File

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

View File

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

View File

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