diff options
author | 2023-07-06 17:11:56 +0530 | |
---|---|---|
committer | 2023-07-06 11:41:56 +0000 | |
commit | b9f27ede7879a446ce58f12ab89f5c7c67e744ae (patch) | |
tree | 81f3b45365f282aae616f228a101f590897ffe57 /bot/exts/utilities/epoch.py | |
parent | Bump pillow from 9.5.0 to 10.0.0 (#1310) (diff) |
Fix type hint (#1314)
Diffstat (limited to 'bot/exts/utilities/epoch.py')
-rw-r--r-- | bot/exts/utilities/epoch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/epoch.py b/bot/exts/utilities/epoch.py index d1ba98bb..1f65b935 100644 --- a/bot/exts/utilities/epoch.py +++ b/bot/exts/utilities/epoch.py @@ -118,7 +118,7 @@ class TimestampMenuView(discord.ui.View): self.dropdown.add_option(label=label, description=date_time) @discord.ui.select(placeholder="Select the format of your timestamp") - async def select_format(self, interaction: discord.Interaction, _: discord.ui.Select) -> discord.Message: + async def select_format(self, interaction: discord.Interaction, _: discord.ui.Select) -> None: """Drop down menu which contains a list of formats which discord timestamps can take.""" selected = interaction.data["values"][0] if selected == "Epoch": |