(self, interaction: discord.Interaction, button: discord.ui.Button)
| 422 | |
| 423 | @discord.ui.button(label="50", style=discord.ButtonStyle.primary, custom_id="max_results_50") |
| 424 | async def fifty_results_button(self, interaction: discord.Interaction, button: discord.ui.Button): |
| 425 | await self.button_callback(interaction, 50) |
| 426 | |
| 427 | @discord.ui.button(label="100", style=discord.ButtonStyle.primary, custom_id="max_results_100") |
| 428 | async def hundred_results_button(self, interaction: discord.Interaction, button: discord.ui.Button): |
nothing calls this directly
no test coverage detected