Skip to content

Commit

Permalink
Fuck
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuro-Rui committed Jan 14, 2024
1 parent ad4d19c commit 85eb968
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/commands/cog.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import inspect
import logging
from typing import TYPE_CHECKING

import discord
from discord.ext import commands

from ..bot import FumoBot
if TYPE_CHECKING:
from ..bot import FumoBot

__all__ = ("Cog",)


class Cog(commands.Cog):
"""A custom subclass of `commands.Cog`."""

def __init__(self, bot: FumoBot) -> None:
def __init__(self, bot: "FumoBot") -> None:
self._log = logging.getLogger(f"fumo.cogs.{self.qualified_name.lower()}")
self.bot = bot
super().__init__()
Expand Down

0 comments on commit 85eb968

Please sign in to comment.