Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Middledot authored Sep 29, 2021
1 parent e8f72e1 commit 1ca80ba
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions discord/ext/commands/cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,14 @@
"""
from __future__ import annotations

import inspect
import discord
from ...cog import Cog

from typing import Any, Callable, ClassVar, Dict, Generator, List, Optional, TYPE_CHECKING, Tuple, TypeVar, Type
from typing import Any, Callable, Generator, TYPE_CHECKING, TypeVar, Type

from ...commands import _BaseCommand, ApplicationCommand
from ...commands import ApplicationCommand

if TYPE_CHECKING:
from .bot import BotBase
from .context import Context
from .core import Command

__all__ = ('Cog',)
Expand Down

0 comments on commit 1ca80ba

Please sign in to comment.