From dea500b60ac21c49f9456e61230a4986ee43fb6d Mon Sep 17 00:00:00 2001 From: David Sowder Date: Tue, 21 Feb 2012 18:00:36 -0600 Subject: [PATCH] pep8 compliance: E301 expected 1 blank line --- albow/root.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/albow/root.py b/albow/root.py index 86524de..0945000 100644 --- a/albow/root.py +++ b/albow/root.py @@ -292,6 +292,7 @@ class RootWidget(Widget): def add_idle_handler(self, widget): from weakref import ref self.idle_handlers.append(ref(widget)) + def remove_idle_handler(self, widget): from weakref import ref self.idle_handlers.remove(ref(widget)) @@ -307,6 +308,7 @@ class RootWidget(Widget): return self labelClass = lambda s, t:wrapped_label(t, 45) + def show_tooltip(self, widget, pos): if hasattr(self, 'currentTooltip'):