diff options
author | mathieui <mathieui@mathieui.net> | 2016-10-27 00:15:25 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-10-27 00:15:25 +0200 |
commit | 8a7448a5a143472fda7487fbfa1a593deeb66215 (patch) | |
tree | 9bbcc09cf7656c5adf5cf250fdcd0694d0599e42 | |
parent | d23d8f901ef9d8cea7fae7e2a5539de14f31f7b9 (diff) | |
download | slixmpp-8a7448a5a143472fda7487fbfa1a593deeb66215.tar.gz slixmpp-8a7448a5a143472fda7487fbfa1a593deeb66215.tar.bz2 slixmpp-8a7448a5a143472fda7487fbfa1a593deeb66215.tar.xz slixmpp-8a7448a5a143472fda7487fbfa1a593deeb66215.zip |
Add missing imports in XEP-0333
-rw-r--r-- | slixmpp/plugins/xep_0333/hints.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/slixmpp/plugins/xep_0333/hints.py b/slixmpp/plugins/xep_0333/hints.py index 932bf6d5..5a3d3f9a 100644 --- a/slixmpp/plugins/xep_0333/hints.py +++ b/slixmpp/plugins/xep_0333/hints.py @@ -11,6 +11,8 @@ import logging from slixmpp import Message from slixmpp.plugins import BasePlugin from slixmpp.xmlstream import register_stanza_plugin +from slixmpp.xmlstream.handler import Callback +from slixmpp.xmlstream.matcher import StanzaPath from slixmpp.plugins.xep_0333 import stanza, Markable, Received, Displayed, Acknowledged log = logging.getLogger(__name__) |