From 1436af3b182b9d4913d2c1beabc36450457e1328 Mon Sep 17 00:00:00 2001 From: Modelmat Date: Sun, 6 May 2018 11:15:20 +1000 Subject: [PATCH] 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 --- examples/background_task.py | 1 - examples/edits.py | 1 - examples/guessing_game.py | 1 - 3 files changed, 3 deletions(-) diff --git a/examples/background_task.py b/examples/background_task.py index a72862fbe..af2dac2c8 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): diff --git a/examples/edits.py b/examples/edits.py index 2c1db4d90..911c582fc 100644 --- a/examples/edits.py +++ b/examples/edits.py @@ -1,5 +1,4 @@ import discord -import asyncio class MyClient(discord.Client): async def on_ready(self): diff --git a/examples/guessing_game.py b/examples/guessing_game.py index a8f09c637..50f0371bb 100644 --- a/examples/guessing_game.py +++ b/examples/guessing_game.py @@ -1,6 +1,5 @@ import discord import random -import asyncio class MyClient(discord.Client): async def on_ready(self):