Skip to content

Commit 1380d9c

Browse files
committed
refactor: lint
1 parent 87d55af commit 1380d9c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

interactions/client/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
VoiceRegion,
7979
)
8080
from interactions.models import Wait
81-
from interactions.models.discord.channel import BaseChannel
8281
from interactions.models.discord.color import BrandColors
8382
from interactions.models.discord.components import get_components_ids, BaseComponent
8483
from interactions.models.discord.embed import Embed
@@ -87,7 +86,6 @@
8786
Intents,
8887
InteractionType,
8988
Status,
90-
ChannelType,
9189
)
9290
from interactions.models.discord.file import UPLOADABLE_TYPE
9391
from interactions.models.discord.snowflake import Snowflake, to_snowflake_list

interactions/models/internal/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@ def gather_options(_options: list[dict[str, typing.Any]]) -> dict[str, typing.An
386386
self.kwargs = {}
387387
self.args = list(self.kwargs.values())
388388

389+
389390
class InteractionContext(BaseInteractionContext, SendMixin):
390391
async def defer(self, *, ephemeral: bool = False) -> None:
391392
"""
@@ -784,7 +785,6 @@ class AutocompleteContext(BaseInteractionContext):
784785
def from_dict(cls, client: "interactions.Client", payload: dict) -> Self:
785786
return super().from_dict(client, payload)
786787

787-
788788
@property
789789
def input_text(self) -> str:
790790
"""The text the user has already filled in."""

0 commit comments

Comments
 (0)