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:
Sebastian Spaeth 2011-03-06 20:03:06 +01:00 committed by Nicolas Sebrecht
parent ab1df868c2
commit 387fbf3aaa
2 changed files with 9 additions and 3 deletions

View File

@ -15,9 +15,11 @@
# along with this program; if not, write to the Free Software
# 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 threading import *
from threading import currentThread, Lock
import offlineimap
protocol = '6.0.0'

View File

@ -16,7 +16,11 @@
# along with this program; if not, write to the Free Software
# 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 Queue import Empty
import offlineimap