Skip to content

Commit de2d450

Browse files
committed
Long line correction
1 parent 8419ff5 commit de2d450

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyqt-calculator-tutorial/examples/dialog.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ def __init__(self, parent=None):
2727
formLayout.addRow('Hobbies:', QLineEdit())
2828
dlgLayout.addLayout(formLayout)
2929
btns = QDialogButtonBox()
30-
btns.setStandardButtons(QDialogButtonBox.Cancel | QDialogButtonBox.Ok)
30+
btns.setStandardButtons(
31+
QDialogButtonBox.Cancel | QDialogButtonBox.Ok)
3132
dlgLayout.addWidget(btns)
3233
self.setLayout(dlgLayout)
3334

0 commit comments

Comments
 (0)