From e03f84ac7f0e4147b60fcf38ac11717b80b1508f Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Thu, 11 Apr 2013 17:35:19 -0400 Subject: [PATCH] autodrawer: Disable pylint warnings caused by gobject introspection --- virtManager/autodrawer.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/virtManager/autodrawer.py b/virtManager/autodrawer.py index 013fa0a59..909f04225 100644 --- a/virtManager/autodrawer.py +++ b/virtManager/autodrawer.py @@ -29,6 +29,11 @@ from gi.repository import GLib from gi.repository import Gtk # pylint: enable=E0611 +# pylint: disable=E1101 +# pylint can't detect functions we inheirit from Gtk, ex: +# OverBox.set_over: Instance of 'OverBox' has no 'remove' member + + class OverBox(Gtk.Box): """ Implementation of an overlapping box