optimize imports

This commit is contained in:
Jean-Philippe Caruana
2013-07-26 13:04:08 +02:00
parent 18dde97c8c
commit 2c26fb0d76
11 changed files with 8 additions and 21 deletions

View File

@@ -19,14 +19,13 @@ import logging
import threading
import sleekxmpp
from sleekxmpp import plugins, features, roster
from sleekxmpp import plugins, roster
from sleekxmpp.api import APIRegistry
from sleekxmpp.exceptions import IqError, IqTimeout
from sleekxmpp.stanza import Message, Presence, Iq, StreamError
from sleekxmpp.stanza.roster import Roster
from sleekxmpp.stanza.nick import Nick
from sleekxmpp.stanza.htmlim import HTMLIM
from sleekxmpp.xmlstream import XMLStream, JID
from sleekxmpp.xmlstream import ET, register_stanza_plugin
@@ -34,8 +33,7 @@ from sleekxmpp.xmlstream.matcher import MatchXPath
from sleekxmpp.xmlstream.handler import Callback
from sleekxmpp.xmlstream.stanzabase import XML_NS
from sleekxmpp.features import *
from sleekxmpp.plugins import PluginManager, register_plugin, load_plugin
from sleekxmpp.plugins import PluginManager, load_plugin
log = logging.getLogger(__name__)