diff options
| author | 2020-06-06 12:20:26 +0200 | |
|---|---|---|
| committer | 2020-06-06 12:20:26 +0200 | |
| commit | 1859ae7a43bc794b735c3445b1873420da5a7001 (patch) | |
| tree | ee50de6ec7bbce99230cd05453e7add3bfbcf8b2 | |
| parent | Apply suggestions from review (diff) | |
Fix import order
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/moderation/silence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/moderation/silence.py b/bot/cogs/moderation/silence.py index 94c560c8e..c451cea0b 100644 --- a/bot/cogs/moderation/silence.py +++ b/bot/cogs/moderation/silence.py @@ -1,7 +1,7 @@ import asyncio import logging from contextlib import suppress -from typing import Optional, NamedTuple +from typing import NamedTuple, Optional from discord import TextChannel from discord.ext import commands, tasks |