diff options
| author | 2020-06-01 23:24:07 +0200 | |
|---|---|---|
| committer | 2020-06-01 23:24:07 +0200 | |
| commit | 0a7b64df552d394e9d1f38fb167ec93334b9bead (patch) | |
| tree | fa376b619c8ceb2fcf92fa61ddeef339da14a084 | |
| parent | Fix Formatting/Styling (diff) | |
Optimize Imports
| -rw-r--r-- | bot/cogs/moderation/silence.py | 8 |
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( |