Skip to content

Commit

Permalink
fix: lint, remove unused args/kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
KernAttila committed Aug 15, 2024
1 parent 1d73834 commit 60551e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cuesubmit/cuesubmit/ui/SettingsWidgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ class DynamicSettingsWidget(BaseSettingsWidget):
See `buildDynamicWidgets` for the widgets creation
"""

def __init__(self, parent=None, tool_name=None, parameters=None, *args, **kwargs):
def __init__(self, parent=None, tool_name=None, parameters=None):
super(DynamicSettingsWidget, self).__init__(parent=parent)
self.groupBox.setTitle(f'{tool_name} options')
self.widgets = buildDynamicWidgets(parameters)
Expand Down

0 comments on commit 60551e8

Please sign in to comment.