mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 12:18:59 +00:00
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:
parent
aa7c5c3ec1
commit
1436af3b18
@ -1,5 +1,4 @@
|
|||||||
import discord
|
import discord
|
||||||
import asyncio
|
|
||||||
|
|
||||||
class MyClient(discord.Client):
|
class MyClient(discord.Client):
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import discord
|
import discord
|
||||||
import asyncio
|
|
||||||
|
|
||||||
class MyClient(discord.Client):
|
class MyClient(discord.Client):
|
||||||
async def on_ready(self):
|
async def on_ready(self):
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import discord
|
import discord
|
||||||
import random
|
import random
|
||||||
import asyncio
|
|
||||||
|
|
||||||
class MyClient(discord.Client):
|
class MyClient(discord.Client):
|
||||||
async def on_ready(self):
|
async def on_ready(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user