Suppress pylinit super complaint
- it's in python3-only code
This commit is contained in:
parent
4ad06d7c59
commit
db69b9885f
|
@ -32,7 +32,7 @@ class AllMails(Screen):
|
|||
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""Initialize the AllMails screen."""
|
||||
super().__init__(*args, **kwargs)
|
||||
super().__init__(*args, **kwargs) # pylint: disable=missing-super-argument
|
||||
self.kivy_state = kivy_state_variables()
|
||||
self._initialize_selected_address()
|
||||
Clock.schedule_once(self.init_ui, 0)
|
||||
|
|
Reference in New Issue
Block a user