Browse Source

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
pull/1521/merge
Modelmat 7 years ago
committed by Rapptz
parent
commit
1436af3b18
  1. 1
      examples/background_task.py
  2. 1
      examples/edits.py
  3. 1
      examples/guessing_game.py

1
examples/background_task.py

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

1
examples/edits.py

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

1
examples/guessing_game.py

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

Loading…
Cancel
Save