This commit is contained in:
deathbybandaid 2022-02-12 15:07:36 -05:00
parent b37e025220
commit c546b0bee2

View File

@ -19,7 +19,10 @@ def sopel_commands(bot, trigger):
bot.say("testing commands") bot.say("testing commands")
bot.say(str(bot.rules._rules.values())) for x in sb.commands.sopel_commands:
bot.say(str(x))
for y in x:
bot.say(str(y))
@prerun() @prerun()
@ -40,5 +43,6 @@ def sopel_action_commands(bot, trigger):
bot.say("testing action_commands") bot.say("testing action_commands")
for x in sb.commands.sopel_action_commands: for x in sb.commands.sopel_action_commands:
bot.say(str(x))
for y in x: for y in x:
bot.say(str(y)) bot.say(str(y))