Skip to content

Commit

Permalink
fix(oomox_plugin: ExportDialog): bypass **kwargs to the parent class
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Sep 14, 2024
1 parent c39ee81 commit affc8e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion oomox_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,14 @@ def __init__(
transient_for: Gtk.Window,
colorscheme: "ThemeT",
theme_name: str,
**_kwargs: "Any",
**kwargs: "Any",
) -> None:
super().__init__(
transient_for=transient_for,
headline=translate("Spotify Options"),
colorscheme=colorscheme,
theme_name=theme_name,
**kwargs,
)
self.label.hide()
self.export_config = ExportConfig(
Expand Down

0 comments on commit affc8e0

Please sign in to comment.