--- a/QScintilla/SpellChecker.py Sat Jun 04 11:53:15 2011 +0200 +++ b/QScintilla/SpellChecker.py Sun Jun 05 18:25:36 2011 +0200 @@ -9,18 +9,18 @@ The spell checker is based on pyenchant. """ +import os + +from PyQt4.QtCore import QTimer, QObject + +import Preferences +import Utilities + try: import enchant except (ImportError, AttributeError, OSError): pass -import os - -from PyQt4.QtCore import * - -import Preferences -import Utilities - class SpellChecker(QObject): """