From 13efd210b3687a81ba4061405235eccca3f8721b Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 10 Feb 2022 10:16:58 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Commands/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index eea37bc..d357986 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -2,12 +2,14 @@ from sopel import plugin +from sopel_SpiceBot_Core_1 import sb + from sopel_SpiceBot_Core_Prerun import prerun @prerun('nickname') @plugin.nickname_command('test') -def sb_nickname_command(bot, trigger, sb): +def sb_nickname_command(bot, trigger): bot.say("Testing the bot") bot.say("Attributes: %s" % [x for x in dir(sb) if not x.startswith("__")]) bot.say("%s" % sb.versions.dict)