diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-02-13 19:26:04 +0000 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-02-13 19:26:04 +0000 |
commit | 23957cfb876f649519eacb3776020f3c3dc26466 (patch) | |
tree | 7f8fc737ea08cef5d4004657a97cb5af88426e82 /cogs | |
parent | d6ef6406bd137937d1f3bbbf3ee1578c76ee1d61 (diff) | |
download | steve-bot-23957cfb876f649519eacb3776020f3c3dc26466.tar steve-bot-23957cfb876f649519eacb3776020f3c3dc26466.tar.gz steve-bot-23957cfb876f649519eacb3776020f3c3dc26466.tar.bz2 steve-bot-23957cfb876f649519eacb3776020f3c3dc26466.tar.lz steve-bot-23957cfb876f649519eacb3776020f3c3dc26466.tar.xz steve-bot-23957cfb876f649519eacb3776020f3c3dc26466.tar.zst steve-bot-23957cfb876f649519eacb3776020f3c3dc26466.zip |
Remove useless imports
Diffstat (limited to '')
-rwxr-xr-x | cogs/general.py | 1 | ||||
-rwxr-xr-x | cogs/twitter.py | 3 | ||||
-rwxr-xr-x | cogs/utils.py | 1 | ||||
-rwxr-xr-x | cogs/webserver.py | 2 |
4 files changed, 1 insertions, 6 deletions
diff --git a/cogs/general.py b/cogs/general.py index 49bc7c9..079b0b8 100755 --- a/cogs/general.py +++ b/cogs/general.py @@ -1,4 +1,3 @@ -import datetime
import inspect
import json
import os
diff --git a/cogs/twitter.py b/cogs/twitter.py index ff2ea8f..d668d47 100755 --- a/cogs/twitter.py +++ b/cogs/twitter.py @@ -1,9 +1,8 @@ import json -import discord import requests import tweepy -from discord.ext import commands, tasks +from discord.ext import commands class StreamListener(tweepy.StreamListener): diff --git a/cogs/utils.py b/cogs/utils.py index 5ce55fd..d6b3b3f 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -1,6 +1,5 @@ import asyncio import datetime -import functools import json import os import subprocess diff --git a/cogs/webserver.py b/cogs/webserver.py index 757c8c5..223dff5 100755 --- a/cogs/webserver.py +++ b/cogs/webserver.py @@ -1,8 +1,6 @@ import json import os -import aiohttp -import discord from aiohttp import web from discord.ext import commands, tasks |