From 2860887e78ae1b05912f493d3e3df844fd55f64b Mon Sep 17 00:00:00 2001 From: Rafael Vargas Date: Tue, 28 Dec 2021 20:40:20 -0400 Subject: [PATCH] Removing useless import --- vulkanbot/commands/Phrases.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vulkanbot/commands/Phrases.py b/vulkanbot/commands/Phrases.py index 4b22281..7a0751d 100644 --- a/vulkanbot/commands/Phrases.py +++ b/vulkanbot/commands/Phrases.py @@ -1,6 +1,5 @@ import requests import json -import discord from config import config from discord.ext import commands from random import random as rand @@ -51,7 +50,7 @@ class Phrases(commands.Cog): phrase = data['quoteText'] author = data['quoteAuthor'] - if phrase == '' or author == '': # Don't accept incomplete phrases + if phrase == '' or author == '': # Don't accept incomplete phrases continue text = f'{phrase} \nBy: {author}'