QScintilla/SpellChecker.py

changeset 1112
8a7d1b9d18db
parent 945
8cd4d08fa9f6
child 1131
7781e396c903
--- 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):
     """

eric ide

mercurial