diff options
author | mathieui <mathieui@mathieui.net> | 2021-04-04 16:18:24 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-06-28 21:01:18 +0200 |
commit | 9f01d368c008f8775a991ddf8226a15735bc8303 (patch) | |
tree | 1b7d25072417ccdf4041f14a3487d2b7b3aa5572 /slixmpp/plugins/xep_0325/control.py | |
parent | ef064299416c6818adabcb22adb3cff205e547a5 (diff) | |
download | slixmpp-9f01d368c008f8775a991ddf8226a15735bc8303.tar.gz slixmpp-9f01d368c008f8775a991ddf8226a15735bc8303.tar.bz2 slixmpp-9f01d368c008f8775a991ddf8226a15735bc8303.tar.xz slixmpp-9f01d368c008f8775a991ddf8226a15735bc8303.zip |
refactor: remove the now obsolete future_wrapper and asyncio-related module
Diffstat (limited to 'slixmpp/plugins/xep_0325/control.py')
-rw-r--r-- | slixmpp/plugins/xep_0325/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0325/control.py b/slixmpp/plugins/xep_0325/control.py index 734b3204..467e10d7 100644 --- a/slixmpp/plugins/xep_0325/control.py +++ b/slixmpp/plugins/xep_0325/control.py @@ -5,10 +5,10 @@ # Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se # This file is part of Slixmpp. # See the file LICENSE for copying permission. +import asyncio import logging import time -from slixmpp import asyncio from functools import partial from slixmpp.xmlstream import JID from slixmpp.xmlstream.handler import Callback |