summaryrefslogtreecommitdiff
path: root/slixmpp/xmlstream/handler/callback.py
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/xmlstream/handler/callback.py')
-rw-r--r--slixmpp/xmlstream/handler/callback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/xmlstream/handler/callback.py b/slixmpp/xmlstream/handler/callback.py
index 5d792bf9..50dd4c66 100644
--- a/slixmpp/xmlstream/handler/callback.py
+++ b/slixmpp/xmlstream/handler/callback.py
@@ -45,13 +45,13 @@ class Callback(BaseHandler):
"""
_once: bool
_instream: bool
- _pointer: Callable[[StanzaBase], Any]
def __init__(self, name: str, matcher: MatcherBase,
pointer: Callable[[StanzaBase], Any],
once: bool = False, instream: bool = False,
stream: Optional[XMLStream] = None):
BaseHandler.__init__(self, name, matcher, stream)
+ self._pointer: Callable[[StanzaBase], Any] = pointer
self._pointer = pointer
self._once = once
self._instream = instream