From b7c844cad79a71c108a9fd3a6fe258fb1c5b41bd Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 16:16:40 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_1/SBCore/commands/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py index d655ba0..c639521 100644 --- a/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py +++ b/sopel_SpiceBot_Core_1/SBCore/commands/__init__.py @@ -10,13 +10,13 @@ class Commands(): @property def sopel_commands(self): - commands = [] + commands_list = [] for plugin_name, commands in self.bot.rules.get_all_commands(): for command in commands.values(): - commands.append({ + commands_list.append({ "name": command.name }) - return commands + return commands_list @property def sopel_nickname_commands(self):