SpiceBot/spicebot_command_upper/__init__.py
deathbybandaid 9986f5188f test
2022-05-05 14:58:54 -04:00

12 lines
203 B
Python

from sopel import plugin
from sopel_SpiceBot_Core_Prerun import prerun
@prerun()
@plugin.command('upper')
def upper(bot, trigger, comrun):
comrun.say(str(comrun.command["trigger_str"]).upper())