Skip to content

Commit 5d7f446

Browse files
committed
Add missing self arg to init
1 parent daee9e0 commit 5d7f446

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actions/SimpleAction/SimpleAction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from gi.repository import Gtk, Adw
1515

1616
class SimpleAction(ActionBase):
17-
def __init__(*args, **kwargs):
17+
def __init__(self, *args, **kwargs):
1818
super().__init__(*args, **kwargs)
1919

2020
def on_ready(self) -> None:

0 commit comments

Comments
 (0)