From f26a896daced89a582beec116a123b71627dc54c Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Tue, 22 Feb 2022 14:09:11 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Commands/__init__.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 522f444..5f1212c 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -6,18 +6,14 @@ from sopel_SpiceBot_Core_Prerun import prerun @prerun() -@plugin.command('pipea') -def pipea(bot, trigger, comrun): - bot.say("%s" % trigger.raw) - bot.say(str(comrun.trigger_dict)) +@plugin.command('lower') +def lower(bot, trigger, comrun): comrun.say = str(comrun.trigger_dict["trigger_str"]).lower() @prerun() -@plugin.command('pipeb') -def pipeb(bot, trigger, comrun): - bot.say("%s" % trigger.raw) - bot.say(str(comrun.trigger_dict)) +@plugin.command('upper') +def upper(bot, trigger, comrun): comrun.say = str(comrun.trigger_dict["trigger_str"]).upper()