From 56f541c8d20abc8eaf7cdf13a69b1f7439137fb6 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 9 Feb 2022 13:00:47 -0500 Subject: [PATCH] test --- SpiceBot/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SpiceBot/__init__.py b/SpiceBot/__init__.py index 873ffc6..958cdbc 100644 --- a/SpiceBot/__init__.py +++ b/SpiceBot/__init__.py @@ -10,12 +10,14 @@ import pathlib from sopel import plugin from .SpiceBotCore import SpiceBotCore_OBJ +print("Attributes: %s" % [x for x in dir(SpiceBotCore_OBJ) if not x.startswith("__")]) SCRIPT_DIR = pathlib.Path(os.path.dirname(os.path.abspath(__file__))) def setup(bot): bot.sbcore = SpiceBotCore_OBJ + print("Attributes: %s" % [x for x in dir(bot.sbcore) if not x.startswith("__")]) bot.sbcore.increment = 1