Fix pyflakes complaints for XEP-0115 plugin.
This commit is contained in:
parent
c43c7be86c
commit
86a482e032
3 changed files with 3 additions and 4 deletions
|
@ -15,7 +15,7 @@ from sleekxmpp.stanza import StreamFeatures, Presence, Iq
|
|||
from sleekxmpp.xmlstream import register_stanza_plugin, JID
|
||||
from sleekxmpp.xmlstream.handler import Callback
|
||||
from sleekxmpp.xmlstream.matcher import StanzaPath
|
||||
from sleekxmpp.exceptions import XMPPError, IqError, IqTimeout
|
||||
from sleekxmpp.exceptions import XMPPError
|
||||
from sleekxmpp.plugins.base import base_plugin
|
||||
from sleekxmpp.plugins.xep_0115 import stanza, StaticCaps
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from sleekxmpp.xmlstream import ElementBase, ET
|
||||
from sleekxmpp.xmlstream import ElementBase
|
||||
|
||||
|
||||
class Capabilities(ElementBase):
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
|
||||
import logging
|
||||
|
||||
import sleekxmpp
|
||||
from sleekxmpp.xmlstream import JID
|
||||
from sleekxmpp.plugins.xep_0030 import StaticDisco
|
||||
from sleekxmpp.exceptions import IqError, IqTimeout
|
||||
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
|
Loading…
Reference in a new issue