cleanup import satements

- conform to PEP8
- explicitly define symbols instead of 'import *'
- remove unused import

Reviewed-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht
2011-05-11 18:25:13 +02:00
parent a39128516b
commit 8a34edc8ca
5 changed files with 9 additions and 6 deletions

View File

@ -19,7 +19,7 @@
from UIBase import UIBase
from getpass import getpass
import sys
from threading import *
from threading import Lock, currentThread
class TTYUI(UIBase):
def __init__(s, config, verbose = 0):