Fixed formatting

This commit is contained in:
2025-04-18 18:18:26 +02:00
parent f7fd81f299
commit fd44276021
4 changed files with 28 additions and 22 deletions

View File

@@ -1,12 +1,12 @@
from logging import Logger
from typing import Any
from discord import User, Guild
from discord import Guild, User
from libbot.cache.classes import CacheMemcached, CacheRedis
from libbot.cache.manager import create_cache_client
from libbot.pycord.classes import PycordBot as LibPycordBot
from classes import PycordUser, PycordGuild
from classes import PycordGuild, PycordUser
from modules.logging_utils import get_logger
logger: Logger = get_logger(__name__)

View File

@@ -1,4 +1,10 @@
from discord import SlashCommandGroup, option, CategoryChannel, ApplicationContext, TextChannel
from discord import (
ApplicationContext,
CategoryChannel,
SlashCommandGroup,
TextChannel,
option,
)
from discord.ext.commands import Cog
from classes import PycordGuild

View File

@@ -1,4 +1,4 @@
from discord import SlashCommandGroup, option, ApplicationContext, Attachment
from discord import ApplicationContext, Attachment, SlashCommandGroup, option
from discord.ext.commands import Cog
from classes import PycordGuild