summaryrefslogtreecommitdiff
path: root/poezio
diff options
context:
space:
mode:
Diffstat (limited to 'poezio')
-rw-r--r--poezio/core/handlers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py
index da94f093..3ae9420b 100644
--- a/poezio/core/handlers.py
+++ b/poezio/core/handlers.py
@@ -19,7 +19,7 @@ from os import path
import pyasn1.codec.der.decoder
import pyasn1.codec.der.encoder
import pyasn1_modules.rfc2459
-from slixmpp import InvalidJID
+from slixmpp import InvalidJID, JID, Message
from slixmpp.xmlstream.stanzabase import StanzaBase, ElementBase
from xml.etree import ElementTree as ET
@@ -102,7 +102,7 @@ class HandlerCore:
self.core.xmpp['xep_0030'].get_info_from_domain(),
)
- def is_known_muc_pm(self, message, with_jid):
+ def is_known_muc_pm(self, message: Message, with_jid: JID):
"""
Try to determine whether a given message is a MUC-PM, without a roundtrip. Returns None when it's not clear
"""