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 committed Aug 8, 2024
1 parent fe1a6d6 commit 161f17b
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 @@ -423,7 +423,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 161f17b

Please sign in to comment.