Commit dd0d06ca authored by Bram Schoenmakers's avatar Bram Schoenmakers

Suppress pylint error on super() call

parent b3af3b37
......@@ -166,7 +166,7 @@ class TodoListWidget(urwid.LineBox):
self.listbox.keypress(p_size, 'down')
return
return super().mouse_event(p_size, p_event, p_button, p_column, p_row, p_focus)
return super().mouse_event(p_size, p_event, p_button, p_column, p_row, p_focus) # pylint: disable=E1102
def selectable(self):
return True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment