From dd5762d9ed540c4cf65dd945b1e224528f36a330 Mon Sep 17 00:00:00 2001 From: Capn <38225872+CapnS@users.noreply.github.com> Date: Fri, 12 Oct 2018 14:03:33 -0500 Subject: [PATCH] Add missing asyncio imports from the examples --- examples/background_task.py | 1 + examples/edits.py | 1 + examples/guessing_game.py | 1 + 3 files changed, 3 insertions(+) diff --git a/examples/background_task.py b/examples/background_task.py index af2dac2c8..a72862fbe 100644 --- a/examples/background_task.py +++ b/examples/background_task.py @@ -1,4 +1,5 @@ import discord +import asyncio class MyClient(discord.Client): def __init__(self, *args, **kwargs): diff --git a/examples/edits.py b/examples/edits.py index 911c582fc..2c1db4d90 100644 --- a/examples/edits.py +++ b/examples/edits.py @@ -1,4 +1,5 @@ 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 50f0371bb..a8f09c637 100644 --- a/examples/guessing_game.py +++ b/examples/guessing_game.py @@ -1,5 +1,6 @@ import discord import random +import asyncio class MyClient(discord.Client): async def on_ready(self):