Skip to content

Commit db69b98

Browse files
committed
Suppress pylinit super complaint
- it's in python3-only code
1 parent 4ad06d7 commit db69b98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitmessagekivy/baseclass/allmail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class AllMails(Screen):
3232

3333
def __init__(self, *args, **kwargs):
3434
"""Initialize the AllMails screen."""
35-
super().__init__(*args, **kwargs)
35+
super().__init__(*args, **kwargs) # pylint: disable=missing-super-argument
3636
self.kivy_state = kivy_state_variables()
3737
self._initialize_selected_address()
3838
Clock.schedule_once(self.init_ui, 0)

0 commit comments

Comments
 (0)