@@ -259,17 +259,17 @@ def unselected_options(self) -> list[Option] | None:
259259 return None
260260
261261 @property
262- @copy_doc . copy_doc (InteractionResponse .send_modal )
262+ @copy_doc (InteractionResponse .send_modal )
263263 def send_modal (self ) -> Callable [..., Awaitable [Interaction ]]:
264264 return self .interaction .response .send_modal
265265
266266 @property
267- @copy_doc . copy_doc (Interaction .respond )
267+ @copy_doc (Interaction .respond )
268268 def respond (self , * args , ** kwargs ) -> Callable [..., Awaitable [Interaction | WebhookMessage ]]:
269269 return self .interaction .respond
270270
271271 @property
272- @copy_doc . copy_doc (InteractionResponse .send_message )
272+ @copy_doc (InteractionResponse .send_message )
273273 def send_response (self ) -> Callable [..., Awaitable [Interaction ]]:
274274 if not self .interaction .response .is_done ():
275275 return self .interaction .response .send_message
@@ -279,7 +279,7 @@ def send_response(self) -> Callable[..., Awaitable[Interaction]]:
279279 )
280280
281281 @property
282- @copy_doc . copy_doc (Webhook .send )
282+ @copy_doc (Webhook .send )
283283 def send_followup (self ) -> Callable [..., Awaitable [WebhookMessage ]]:
284284 if self .interaction .response .is_done ():
285285 return self .followup .send
@@ -289,7 +289,7 @@ def send_followup(self) -> Callable[..., Awaitable[WebhookMessage]]:
289289 )
290290
291291 @property
292- @copy_doc . copy_doc (InteractionResponse .defer )
292+ @copy_doc (InteractionResponse .defer )
293293 def defer (self ) -> Callable [..., Awaitable [None ]]:
294294 return self .interaction .response .defer
295295
@@ -323,7 +323,7 @@ async def delete(self, *, delay: float | None = None) -> None:
323323 return await self .interaction .delete_original_response (delay = delay )
324324
325325 @property
326- @copy_doc . copy_doc (Interaction .edit_original_response )
326+ @copy_doc (Interaction .edit_original_response )
327327 def edit (self ) -> Callable [..., Awaitable [InteractionMessage ]]:
328328 return self .interaction .edit_original_response
329329
0 commit comments