Skip to content

Commit

Permalink
fix: let parent argument at the end
Browse files Browse the repository at this point in the history
  • Loading branch information
KernAttila authored and Kern Attila Germain committed Jun 2, 2023
1 parent fb8c00d commit 3ed0c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cuesubmit/cuesubmit/ui/Widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class CueLabelToggle(QtWidgets.QWidget):
actionTriggered = QtCore.Signal(int)
rangeChanged = QtCore.Signal(int, int)

def __init__(self, label=None, parent=None, default_value=False):
def __init__(self, label=None, default_value=False, parent=None):
super(CueLabelToggle, self).__init__(parent=parent)
self.mainLayout = QtWidgets.QHBoxLayout()
self.label = QtWidgets.QLabel(label, parent=self)
Expand Down

0 comments on commit 3ed0c0d

Please sign in to comment.