aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ItsDrike <[email protected]>2020-06-01 23:24:07 +0200
committerGravatar ItsDrike <[email protected]>2020-06-01 23:24:07 +0200
commit0a7b64df552d394e9d1f38fb167ec93334b9bead (patch)
treefa376b619c8ceb2fcf92fa61ddeef339da14a084
parentFix Formatting/Styling (diff)
Optimize Imports
-rw-r--r--bot/cogs/moderation/silence.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bot/cogs/moderation/silence.py b/bot/cogs/moderation/silence.py
index 448f17966..5dfa9cc8a 100644
--- a/bot/cogs/moderation/silence.py
+++ b/bot/cogs/moderation/silence.py
@@ -5,6 +5,10 @@ from collections import namedtuple
from contextlib import suppress
from typing import Optional
+from discord import TextChannel
+from discord.ext import commands, tasks
+from discord.ext.commands import Context
+
from bot.bot import Bot
from bot.constants import Channels, Emojis, Guild, MODERATION_ROLES, Roles
from bot.converters import HushDurationConverter
@@ -12,10 +16,6 @@ from bot.utils import time
from bot.utils.checks import with_role_check
from bot.utils.scheduling import Scheduler
-from discord import TextChannel
-from discord.ext import commands, tasks
-from discord.ext.commands import Context
-
log = logging.getLogger(__name__)
SilencedChannel = namedtuple(