diff --git a/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py b/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py index 342907e..74f352b 100644 --- a/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py @@ -28,6 +28,10 @@ def sb_test_command_groups(bot, trigger): for command in commands.values() ) + for command, doc, usages in commands: + bot.say(str(dir(command))) + return + realcommands = dict( (name, (doc.splitlines(), [u['text'] for u in usages])) for command, doc, usages in commands