Skip to content

pylint: disable=E1101 # Instance of 'Child' has no XXX member

pylint complaint about lots of false positives, because we perform methods on a (seemingly) Gtk.Child that is really a gtk widget. We don't really have a way to cast it to e.g. Gtk.Stack (or it does not work), so disable the no-member in this block which brings pylint to 10/10 in this file.

I do not like this approach as it will mask no-member errors in the future, but I do not see a better way to handle this now.

P.S. This bumps pylint from 9.16 to 9.23

Merge request reports