File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change 32
32
from discord .webhook .async_ import Webhook
33
33
34
34
if TYPE_CHECKING :
35
+ from typing import Awaitable , Callable
36
+
35
37
from typing_extensions import ParamSpec
36
38
37
39
import discord
38
- from .. import Bot
39
- from ..state import ConnectionState
40
- from ..voice_client import VoiceClient
41
40
42
- from .core import ApplicationCommand , Option
43
- from ..interactions import InteractionChannel
41
+ from .. import Bot
42
+ from ..client import ClientUser
43
+ from ..cog import Cog
44
44
from ..guild import Guild
45
+ from ..interactions import InteractionChannel
45
46
from ..member import Member
46
47
from ..message import Message
47
- from ..user import User
48
48
from ..permissions import Permissions
49
- from ..client import ClientUser
50
-
51
- from ..cog import Cog
49
+ from ..state import ConnectionState
50
+ from .. user import User
51
+ from ..voice_client import VoiceClient
52
52
from ..webhook import WebhookMessage
53
-
54
- from typing import Callable , Awaitable
53
+ from .core import ApplicationCommand , Option
55
54
56
55
T = TypeVar ("T" )
57
56
CogT = TypeVar ("CogT" , bound = "Cog" )
You can’t perform that action at this time.
0 commit comments