summaryrefslogtreecommitdiff
path: root/slixmpp/xmlstream/handler/xmlcallback.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-07-05 22:25:38 +0200
committermathieui <mathieui@mathieui.net>2021-07-05 22:25:38 +0200
commitf2d7e86fc7426d6bdda244a4f399c7930b5624cc (patch)
tree252fd52a3250e9cc1f724393cbf36b3472c4cb93 /slixmpp/xmlstream/handler/xmlcallback.py
parentfe1a325aa7249ec4a52f1f5d6fac86fcf1b22756 (diff)
downloadslixmpp-f2d7e86fc7426d6bdda244a4f399c7930b5624cc.tar.gz
slixmpp-f2d7e86fc7426d6bdda244a4f399c7930b5624cc.tar.bz2
slixmpp-f2d7e86fc7426d6bdda244a4f399c7930b5624cc.tar.xz
slixmpp-f2d7e86fc7426d6bdda244a4f399c7930b5624cc.zip
typing: add a bunch of type ignores
because this is too smart for mypy and I do not want to rewrite those things right now.
Diffstat (limited to 'slixmpp/xmlstream/handler/xmlcallback.py')
-rw-r--r--slixmpp/xmlstream/handler/xmlcallback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/xmlstream/handler/xmlcallback.py b/slixmpp/xmlstream/handler/xmlcallback.py
index 31534033..c1adc815 100644
--- a/slixmpp/xmlstream/handler/xmlcallback.py
+++ b/slixmpp/xmlstream/handler/xmlcallback.py
@@ -31,4 +31,4 @@ class XMLCallback(Callback):
stream processing. Used only by prerun.
Defaults to False.
"""
- Callback.run(self, payload.xml, instream)
+ Callback.run(self, payload.xml, instream) # type: ignore