Import only the class that matters.
authorIvan Frade <ivan.frade@gmail.com>
Thu, 7 Jul 2011 15:04:02 +0000 (18:04 +0300)
committerIvan Frade <ivan.frade@gmail.com>
Thu, 7 Jul 2011 15:04:02 +0000 (18:04 +0300)
src/mussorgsky-qml.py

index ce4c5db..071d33e 100755 (executable)
@@ -4,7 +4,7 @@
 import sys
 import os
 from PySide.QtCore import *
-from PySide.QtGui import *
+from PySide.QtGui import QApplication
 from PySide.QtDeclarative import QDeclarativeView
 
 from albumModel import AlbumModel
@@ -43,6 +43,5 @@ view.engine().quit.connect (app.quit)
 
 view.show()
 
-
 # Enter Qt main loop
 sys.exit(app.exec_())