From 7f586c2fc5150f1f4a5cd1c872cb24f30493e807 Mon Sep 17 00:00:00 2001 From: James Gerity Date: Tue, 12 Dec 2023 19:57:04 -0500 Subject: [PATCH] tell: add missing examples Co-authored-by: Florian Strzelecki --- sopel/builtins/tell.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sopel/builtins/tell.py b/sopel/builtins/tell.py index 8365e0125..820fb01d4 100644 --- a/sopel/builtins/tell.py +++ b/sopel/builtins/tell.py @@ -170,8 +170,14 @@ def _format_safe_lstrip(text): @plugin.command('tell', 'ask') @plugin.nickname_command('tell', 'ask') @plugin.example('$nickname, tell dgw he broke it again.', user_help=True) +@plugin.example('.ask ', 'ask whom?') @plugin.example('.tell ', 'tell whom?') +@plugin.example('.ask @', 'ask whom?') +@plugin.example('.tell @', 'tell whom?') @plugin.example('.ask Exirel ', 'ask Exirel what?') +@plugin.example('.tell Exirel ', 'ask Exirel what?') +@plugin.example('.ask @Exirel ', 'ask Exirel what?') +@plugin.example('.tell @Exirel ', 'tell Exirel what?') def f_remind(bot, trigger): """Give someone a message the next time they're seen""" teller = trigger.nick