summaryrefslogtreecommitdiff
path: root/sleekxmpp/componentxmpp.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-02-17 14:41:31 -0800
committerLance Stout <lancestout@gmail.com>2012-02-17 14:41:31 -0800
commit9d5eb864d1a370a32f933a77b48363950542c759 (patch)
tree977907e6fa345b4607f0097797a024f456891894 /sleekxmpp/componentxmpp.py
parent86a482e032ed7fae1085b41cf637c5336b2cefb2 (diff)
downloadslixmpp-9d5eb864d1a370a32f933a77b48363950542c759.tar.gz
slixmpp-9d5eb864d1a370a32f933a77b48363950542c759.tar.bz2
slixmpp-9d5eb864d1a370a32f933a77b48363950542c759.tar.xz
slixmpp-9d5eb864d1a370a32f933a77b48363950542c759.zip
More import cleanups based on pyflakes results.
Diffstat (limited to 'sleekxmpp/componentxmpp.py')
-rw-r--r--sleekxmpp/componentxmpp.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py
index 5b16c5ef..df23c2f6 100644
--- a/sleekxmpp/componentxmpp.py
+++ b/sleekxmpp/componentxmpp.py
@@ -15,17 +15,14 @@
from __future__ import absolute_import
import logging
-import base64
import sys
import hashlib
-from sleekxmpp import plugins
-from sleekxmpp import stanza
from sleekxmpp.basexmpp import BaseXMPP
-from sleekxmpp.xmlstream import XMLStream, RestartStream
-from sleekxmpp.xmlstream import StanzaBase, ET
-from sleekxmpp.xmlstream.matcher import *
-from sleekxmpp.xmlstream.handler import *
+from sleekxmpp.xmlstream import XMLStream
+from sleekxmpp.xmlstream import ET
+from sleekxmpp.xmlstream.matcher import MatchXPath
+from sleekxmpp.xmlstream.handler import Callback
log = logging.getLogger(__name__)