From a91c4546c77d10bb921b8e807631d375989e2fb3 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Mon, 28 Aug 2023 20:52:43 +0100 Subject: [PATCH] Lint repo with new ruff rules --- pydis_core/utils/__init__.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/pydis_core/utils/__init__.py b/pydis_core/utils/__init__.py index ac5760a88..5fecf0bf0 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