aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/events
diff options
context:
space:
mode:
authorGravatar Izan <[email protected]>2022-10-02 14:39:41 +0100
committerGravatar Izan <[email protected]>2022-10-02 14:39:41 +0100
commitf2de807dd8c56c2ee3a1195c4d0bf0f90ec4c245 (patch)
treed6e88a9dfdbc998a98e0d5af829199f834aa30b6 /bot/exts/events
parentBump rapidfuzz from 2.10.1 to 2.10.2 (#1105) (diff)
Fix order of function parameters on @discord.ui.select
During development the order of the `interaction` and `select` swapped, but this wasn't updated in the codebase. This commit fixes that.
Diffstat (limited to 'bot/exts/events')
-rw-r--r--bot/exts/events/advent_of_code/views/dayandstarview.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/events/advent_of_code/views/dayandstarview.py b/bot/exts/events/advent_of_code/views/dayandstarview.py
index 5529c12b..d23de2c8 100644
--- a/bot/exts/events/advent_of_code/views/dayandstarview.py
+++ b/bot/exts/events/advent_of_code/views/dayandstarview.py
@@ -55,7 +55,7 @@ class AoCDropdownView(discord.ui.View):
options=[discord.SelectOption(label=str(i)) for i in range(1, 26)],
custom_id="day_select"
)
- async def day_select(self, select: discord.ui.Select, interaction: discord.Interaction) -> None:
+ async def day_select(self, _: discord.Interaction, select: discord.ui.Select) -> None:
"""Dropdown to choose a Day of the AoC."""
self.day = select.values[0]
@@ -64,12 +64,12 @@ class AoCDropdownView(discord.ui.View):
options=[discord.SelectOption(label=str(i)) for i in range(1, 3)],
custom_id="star_select"
)
- async def star_select(self, select: discord.ui.Select, interaction: discord.Interaction) -> None:
+ async def star_select(self, _: discord.Interaction, select: discord.ui.Select) -> None:
"""Dropdown to choose either the first or the second star."""
self.star = select.values[0]
@discord.ui.button(label="Fetch", style=discord.ButtonStyle.blurple)
- async def fetch(self, button: discord.ui.Button, interaction: discord.Interaction) -> None:
+ async def fetch(self, _: discord.ui.Button, interaction: discord.Interaction) -> None:
"""Button that fetches the statistics based on the dropdown values."""
if self.day == 0 or self.star == 0:
await interaction.response.send_message(