Some more typing for is_known_muc_pm
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
a7ab0cf59d
commit
0a131fcc5b
1 changed files with 3 additions and 1 deletions
|
@ -5,6 +5,8 @@ XMPP-related handlers for the Core class
|
|||
import logging
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
from typing import Optional
|
||||
|
||||
import asyncio
|
||||
import curses
|
||||
import functools
|
||||
|
@ -103,7 +105,7 @@ class HandlerCore:
|
|||
self.core.xmpp['xep_0030'].get_info_from_domain(),
|
||||
)
|
||||
|
||||
def is_known_muc_pm(self, message: Message, with_jid: JID):
|
||||
def is_known_muc_pm(self, message: Message, with_jid: JID) -> Optional[bool]:
|
||||
"""
|
||||
Try to determine whether a given message is a MUC-PM, without a roundtrip. Returns None when it's not clear
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue