Sun, 29 Jul 2012 18:12:50 +0200
Fixed a PEP-8 related issue.
# -*- coding: utf-8 -*- """ Module implementing $CLASSNAME$. """ from PySide.QtCore import Slot from PySide.QtGui import $SUPERCLASS$ from .Ui_$FORMFILE$ import Ui_$FORMCLASS$ class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$): """ Class documentation goes here. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent widget (QWidget) """ $SUPERCLASS$.__init__(self, parent) self.setupUi(self)