ui: clean up importment statements
They were not PEP-8 formatted, and some imports were simply unnecessary. Removed those. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
parent
ab1df868c2
commit
387fbf3aaa
@ -15,9 +15,11 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
import urllib, sys, re, time, traceback, threading, thread
|
import urllib
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
from UIBase import UIBase
|
from UIBase import UIBase
|
||||||
from threading import *
|
from threading import currentThread, Lock
|
||||||
import offlineimap
|
import offlineimap
|
||||||
|
|
||||||
protocol = '6.0.0'
|
protocol = '6.0.0'
|
||||||
|
@ -16,7 +16,11 @@
|
|||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
import re, time, sys, traceback, threading, thread
|
import re
|
||||||
|
import time
|
||||||
|
import sys
|
||||||
|
import traceback
|
||||||
|
import threading
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
from Queue import Empty
|
from Queue import Empty
|
||||||
import offlineimap
|
import offlineimap
|
||||||
|
Loading…
Reference in New Issue
Block a user