We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.clearpronouns
1 parent 1b5c207 commit 3b2fb79Copy full SHA for 3b2fb79
sopel/modules/pronouns.py
@@ -120,3 +120,12 @@ def set_pronouns(bot, trigger):
120
bot.reply(
121
"Thanks for telling me! I'll remember you use {}.{}".format(pronouns, disambig)
122
)
123
+
124
125
+@plugin.command('clearpronouns')
126
+def unset_pronouns(bot, trigger):
127
+ """Clear pronouns for the given user."""
128
+ bot.db.delete_nick_value(trigger.nick, 'pronouns')
129
+ bot.reply(
130
+ "Okay. I'll forget your pronouns."
131
+ )
0 commit comments