summaryrefslogtreecommitdiff
path: root/slixmpp/test/integration.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/test/integration.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/test/integration.py')
-rw-r--r--slixmpp/test/integration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/test/integration.py b/slixmpp/test/integration.py
index e8093107..fe33fa57 100644
--- a/slixmpp/test/integration.py
+++ b/slixmpp/test/integration.py
@@ -11,7 +11,7 @@ except ImportError:
# Python < 3.8
# just to make sure the imports do not break, but
# not usable.
- from unittest import TestCase as IsolatedAsyncioTestCase
+ from unittest import TestCase as IsolatedAsyncioTestCase # type: ignore
from typing import (
Dict,
List,