Skip to content
This repository was archived by the owner on Mar 8, 2022. It is now read-only.

Commit b3c2c5f

Browse files
rechtschreib fehler behoben
1 parent e4bf623 commit b3c2c5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

discord_message_components/receive.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ async def set_edit(self, *, content=MISSING, embed=MISSING, embeds=MISSING, atta
441441
The new components in the message; default MISSING
442442
443443
"""
444-
await self.edit(content=content or self.content, embed=embed, embeds=embeds or self.embeds, attachmenets=attachments or self.attachments, suppress=suppress or self.suppressed, delete_after=delete_after, allowed_mentions=allowed_mentions, components=components or self.components)
444+
await self.edit(content=content or self.content, embed=embed, embeds=embeds or self.embeds, attachments=attachments or self.attachments, suppress=suppress or self.suppressed, delete_after=delete_after, allowed_mentions=allowed_mentions, components=components or self.components)
445445

446446
async def disable_action_row(self, row, disable = True):
447447
"""Disables an action row of components in the message
@@ -643,4 +643,4 @@ async def delete(self, *, delay):
643643
raise Exception("Cannot delete ephemeral message")
644644
async def respond(self, **kwargs):
645645
raise Exception("Cannot reply to ephemeral message. Instead, use the '.send' function of the interaction")
646-
646+

0 commit comments

Comments
 (0)