From f8bc75bf42b6d5bc71d44972cad129d280f7b49b Mon Sep 17 00:00:00 2001 From: Siphalor Date: Mon, 11 Oct 2021 13:22:55 +0200 Subject: [PATCH] Optimize imports --- bot.py | 1 - lib/utils.py | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bot.py b/bot.py index 06d21f3..85511f1 100644 --- a/bot.py +++ b/bot.py @@ -6,7 +6,6 @@ import time from typing import Optional, List, Dict, Iterable import discord -import gtts from discord.ext import commands from discord.ext.commands import MemberConverter from discord_slash import SlashCommand, SlashContext, SlashCommandOptionType diff --git a/lib/utils.py b/lib/utils.py index 1775023..ffa2190 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -1,9 +1,9 @@ -import asyncio import os import random import string from collections import AsyncIterable -from typing import Callable, AsyncGenerator, Optional, Any, Coroutine +from typing import Callable, AsyncGenerator, Optional, Any + import discord import gtts