Skip to content

Commit d119620

Browse files
style(pre-commit): auto fixes from pre-commit.com hooks
1 parent c8733e4 commit d119620

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

discord/commands/context.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,25 @@
3232
from discord.webhook.async_ import Webhook
3333

3434
if TYPE_CHECKING:
35+
from typing import Awaitable, Callable
36+
3537
from typing_extensions import ParamSpec
3638

3739
import discord
38-
from .. import Bot
39-
from ..state import ConnectionState
40-
from ..voice_client import VoiceClient
4140

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
4444
from ..guild import Guild
45+
from ..interactions import InteractionChannel
4546
from ..member import Member
4647
from ..message import Message
47-
from ..user import User
4848
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
5252
from ..webhook import WebhookMessage
53-
54-
from typing import Callable, Awaitable
53+
from .core import ApplicationCommand, Option
5554

5655
T = TypeVar("T")
5756
CogT = TypeVar("CogT", bound="Cog")

0 commit comments

Comments
 (0)