Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-10-15 20:04:49 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-11-23 16:14:36 (GMT)
commit7983242f7a661d49e247ec8403b7f326da8026f8 (patch)
treea502d6d6774b06caf88dcfd56519c8e6f8a661e0
parentadba508d8f4d0bc0b195dbebedb46c932ba91a83 (diff)
pylint cleanup: initialise all attributes in __init__()
Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
-rw-r--r--src/sugar/graphics/palettewindow.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sugar/graphics/palettewindow.py b/src/sugar/graphics/palettewindow.py
index 38331ad..567789b 100644
--- a/src/sugar/graphics/palettewindow.py
+++ b/src/sugar/graphics/palettewindow.py
@@ -147,6 +147,7 @@ class PaletteWindow(gtk.Window):
self._alignment = None
self._up = False
self._old_alloc = None
+ self._palette_state = None
self._popup_anim = animator.Animator(.5, 10)
self._popup_anim.add(_PopupAnimation(self))