diff --git a/wormgas/cogs/config.py b/wormgas/cogs/config.py index 6f9a959..6ef5063 100644 --- a/wormgas/cogs/config.py +++ b/wormgas/cogs/config.py @@ -17,7 +17,8 @@ async def slash_command_stats(self, interaction: discord.Interaction): results = self.bot.db.command_log_list() message = ', '.join([f'{r['command']} ({r['usage_count']})' for r in results]) - await interaction.response.send(message) + # noinspection PyUnresolvedReferences + await interaction.response.send_message(message) @discord.ext.commands.command(name='set') @discord.ext.commands.is_owner()