From 8ac47082a9032039443d4b4d378c02cce458ea52 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 19:24:30 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index c52f0a4..37150ee 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -133,13 +133,13 @@ def command_args(): def actual_decorator(function): @functools.wraps(function) - def internal_testfun(bot, trigger, *args, **kwargs): + def internal_command_args(bot, trigger, *args, **kwargs): bot.say("command_args") function(bot, trigger, *args, **kwargs) - return internal_testfun + return internal_command_args return actual_decorator