Fixed imports
Removed unused modules/packages and added getpass, which was missing.
This commit is contained in:
parent
a8ac115310
commit
a0c6bf15e9
1 changed files with 2 additions and 12 deletions
|
@ -11,18 +11,10 @@
|
||||||
See the file LICENSE for copying permission.
|
See the file LICENSE for copying permission.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
import getpass
|
||||||
import sys
|
|
||||||
# This can be used when you are in a test environment and need to make paths right
|
|
||||||
sys.path=['/Users/jocke/Dropbox/06_dev/SleekXMPP']+sys.path
|
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import unittest
|
import sys
|
||||||
import distutils.core
|
|
||||||
import datetime
|
|
||||||
|
|
||||||
from glob import glob
|
|
||||||
from os.path import splitext, basename, join as pjoin
|
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
from urllib import urlopen
|
from urllib import urlopen
|
||||||
|
|
||||||
|
@ -39,8 +31,6 @@ else:
|
||||||
|
|
||||||
from sleekxmpp.plugins.xep_0323.device import Device
|
from sleekxmpp.plugins.xep_0323.device import Device
|
||||||
|
|
||||||
#from sleekxmpp.exceptions import IqError, IqTimeout
|
|
||||||
|
|
||||||
class IoT_TestDevice(sleekxmpp.ClientXMPP):
|
class IoT_TestDevice(sleekxmpp.ClientXMPP):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue