--- a/Graphics/PackageItem.py Sun Oct 06 19:52:33 2013 +0200 +++ b/Graphics/PackageItem.py Mon Oct 07 19:10:11 2013 +0200 @@ -121,7 +121,8 @@ height = height + self.modules.boundingRect().height() latchW = width / 3.0 latchH = min(15.0, latchW) - self.setSize(width + 2 * self.margin, height + latchH + 2 * self.margin) + self.setSize(width + 2 * self.margin, + height + latchH + 2 * self.margin) x = self.margin + self.rect().x() y = self.margin + self.rect().y() + latchH @@ -154,7 +155,8 @@ @param widget optional reference to the widget painted on (QWidget) """ pen = self.pen() - if (option.state & QStyle.State_Selected) == QStyle.State(QStyle.State_Selected): + if (option.state & QStyle.State_Selected) == \ + QStyle.State(QStyle.State_Selected): pen.setWidth(2) else: pen.setWidth(1) @@ -182,8 +184,8 @@ Public method to build a string to persist the specific item data. This string must start with ", " and should be built like - "attribute=value" with pairs separated by ", ". value must not contain ", " - or newlines. + "attribute=value" with pairs separated by ", ". value must not + contain ", " or newlines. @return persistence data (string) """