Browse Source

Call inner item callback and interaction_check by default

pull/9260/merge
Rapptz 1 year ago
parent
commit
3258507b4a
  1. 6
      discord/ui/dynamic.py

6
discord/ui/dynamic.py

@ -208,3 +208,9 @@ class DynamicItem(Generic[BaseT], Item['View']):
from the ``match`` object.
"""
raise NotImplementedError
async def callback(self, interaction: Interaction[ClientT]) -> Any:
return await self.item.callback(interaction)
async def interaction_check(self, interaction: Interaction[ClientT], /) -> bool:
return await self.item.interaction_check(interaction)

Loading…
Cancel
Save