aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MrKomodoDragon <[email protected]>2021-02-16 10:44:21 -0800
committerGravatar MrKomodoDragon <[email protected]>2021-02-16 10:44:21 -0800
commitfdfa5c75b74a898512bfac6fa3ac14d452eae05d (patch)
tree11abc12975946d48adda026d6b8516d18de43094
parentAdd .pyfacts command (diff)
Remove unused import
-rw-r--r--bot/exts/evergreen/pythonfacts.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/evergreen/pythonfacts.py b/bot/exts/evergreen/pythonfacts.py
index ba792561..b1c28d4b 100644
--- a/bot/exts/evergreen/pythonfacts.py
+++ b/bot/exts/evergreen/pythonfacts.py
@@ -2,13 +2,12 @@ import random
import discord
from discord.ext import commands
-from discord.ext.commands.bot import Bot
class PythonFacts(commands.Cog):
"""Gives a random fun fact about Python."""
- def __init__(self, bot: Bot) -> None:
+ def __init__(self, bot: commands.Bot) -> None:
self.bot = bot
@commands.command(name='pythonfact', aliases=['pyfact'])