diff options
| author | Modelmat <[email protected]> | 2018-05-06 11:15:20 +1000 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-08-22 21:06:09 -0400 |
| commit | 1436af3b182b9d4913d2c1beabc36450457e1328 (patch) | |
| tree | 89751e45a7392ff812bc47d1b44b6986706b0c47 /examples/background_task.py | |
| parent | [commands] Ignore bots from Bot.process_commands by default. (diff) | |
| download | discord.py-1436af3b182b9d4913d2c1beabc36450457e1328.tar.xz discord.py-1436af3b182b9d4913d2c1beabc36450457e1328.zip | |
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
Diffstat (limited to 'examples/background_task.py')
| -rw-r--r-- | examples/background_task.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/background_task.py b/examples/background_task.py index a72862fb..af2dac2c 100644 --- a/examples/background_task.py +++ b/examples/background_task.py @@ -1,5 +1,4 @@ import discord -import asyncio class MyClient(discord.Client): def __init__(self, *args, **kwargs): |