From 1e2e8e398526768beda0cf1f51e4ac4abdbfd330 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 10 Feb 2022 14:11:54 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Commands/__init__.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 05c85fa..895fc32 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -22,7 +22,8 @@ def sb_test_commands(bot, trigger): def sopel_commands(bot, trigger): for x in sb.commands.sopel_commands: - bot.say(str(x)) + for y in x: + bot.say(str(y)) @prerun_nickname_command() @@ -30,7 +31,8 @@ def sopel_commands(bot, trigger): def sopel_nickname_commands(bot, trigger): for x in sb.commands.sopel_nickname_commands: - bot.say(str(x)) + for y in x: + bot.say(str(y)) @prerun_nickname_command() @@ -38,4 +40,5 @@ def sopel_nickname_commands(bot, trigger): def sopel_action_commands(bot, trigger): for x in sb.commands.sopel_action_commands: - bot.say(str(x)) + for y in x: + bot.say(str(y))