diff options
author | 2021-03-12 20:06:56 -0500 | |
---|---|---|
committer | 2021-03-12 20:06:56 -0500 | |
commit | b395c05cc0885c427afab80e914d098dd9edc742 (patch) | |
tree | 29a8000ecc96e6da9bbf29fd8b3a3502c819e452 /bot/utils/extensions.py | |
parent | Make flake8 happy. (diff) |
Make flake8 happy again.
Diffstat (limited to 'bot/utils/extensions.py')
-rw-r--r-- | bot/utils/extensions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/utils/extensions.py b/bot/utils/extensions.py index afc57383..ffa8a936 100644 --- a/bot/utils/extensions.py +++ b/bot/utils/extensions.py @@ -1,9 +1,10 @@ -from discord.ext.commands import Context import importlib import inspect import pkgutil from typing import Iterator, NoReturn +from discord.ext.commands import Context + from bot import exts |