Browse Source

Add missing asyncio imports from the examples

pull/1739/head
Capn 7 years ago
committed by Rapptz
parent
commit
dd5762d9ed
  1. 1
      examples/background_task.py
  2. 1
      examples/edits.py
  3. 1
      examples/guessing_game.py

1
examples/background_task.py

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

1
examples/edits.py

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

1
examples/guessing_game.py

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

Loading…
Cancel
Save