diff options
author | 2023-08-28 20:52:43 +0100 | |
---|---|---|
committer | 2023-08-28 21:39:43 +0100 | |
commit | a91c4546c77d10bb921b8e807631d375989e2fb3 (patch) | |
tree | 12de82edeb9da3cb71e95c890a49539a3db483a6 | |
parent | Replace isort with ruff's implementatation (diff) |
Lint repo with new ruff rules
-rw-r--r-- | pydis_core/utils/__init__.py | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/pydis_core/utils/__init__.py b/pydis_core/utils/__init__.py index ac5760a8..5fecf0bf 100644 --- a/pydis_core/utils/__init__.py +++ b/pydis_core/utils/__init__.py @@ -1,8 +1,19 @@ """Useful utilities and tools for Discord bot development.""" from pydis_core.utils import ( - _monkey_patches, caching, channel, commands, cooldown, error_handling, function, interactions, logging, members, - paste_service, regex, scheduling + _monkey_patches, + caching, + channel, + commands, + cooldown, + error_handling, + function, + interactions, + logging, + members, + paste_service, + regex, + scheduling, ) from pydis_core.utils._extensions import unqualify |