Hello Python: Remove semicolons from sidebar.py (E703)

Reviewers: #falkon, cullmann

Reviewed By: #falkon, cullmann

Subscribers: cullmann, falkon

Tags: #falkon

Differential Revision: https://phabricator.kde.org/D21386
remotes/origin/pshaw
David Rosca 7 years ago
parent 2887d87ed5
commit 107e75b469
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8
  1. 12
      src/scripts/hellopython/sidebar.py

@ -30,11 +30,11 @@ class HelloSidebar(Falkon.SideBarInterface):
def createSideBarWidget(self, window):
w = QtWidgets.QWidget()
b = QtWidgets.QPushButton("Hello Python v0.0.1");
b = QtWidgets.QPushButton("Hello Python v0.0.1")
label = QtWidgets.QLabel()
label.setPixmap(QtGui.QPixmap(":icons/other/about.svg"));
l = QtWidgets.QVBoxLayout(w);
l.addWidget(label);
l.addWidget(b);
w.setLayout(l);
label.setPixmap(QtGui.QPixmap(":icons/other/about.svg"))
l = QtWidgets.QVBoxLayout(w)
l.addWidget(label)
l.addWidget(b)
w.setLayout(l)
return w

Loading…
Cancel
Save