summaryrefslogtreecommitdiff
path: root/poezio/multiuserchat.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/multiuserchat.py')
-rw-r--r--poezio/multiuserchat.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/poezio/multiuserchat.py b/poezio/multiuserchat.py
index 73a802b2..a58883c6 100644
--- a/poezio/multiuserchat.py
+++ b/poezio/multiuserchat.py
@@ -13,6 +13,7 @@ slix plugin
from xml.etree import cElementTree as ET
from poezio.common import safeJID
+from slixmpp import JID
from slixmpp.exceptions import IqError, IqTimeout
import logging
log = logging.getLogger(__name__)
@@ -67,7 +68,7 @@ def send_groupchat_message(xmpp, jid, line):
xmpp.send_message(mto=jid, mbody=line, mtype='groupchat')
-def change_show(xmpp, jid, own_nick, show, status):
+def change_show(xmpp, jid: JID, own_nick: str, show, status):
"""
Change our 'Show'
"""