This commit is contained in:
deathbybandaid 2022-02-12 15:59:39 -05:00
parent a7891df941
commit 23812e8ce1

View File

@ -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