From ba0424c6dfcfefb844ebc71da19f045778b8d4fa Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 26 Aug 2020 10:39:08 +1000 Subject: [PATCH] gui: fix a flake8 complaint Signed-off-by: Peter Hutterer --- tuhi/gui/drawingperspective.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tuhi/gui/drawingperspective.py b/tuhi/gui/drawingperspective.py index bda7e93..416083b 100644 --- a/tuhi/gui/drawingperspective.py +++ b/tuhi/gui/drawingperspective.py @@ -76,9 +76,9 @@ class DrawingPerspective(Gtk.Stack): self.flowboxes = {} # Add an expanding emtpy label to the bottom - this pushes all the # real stuff up to the top, forcing a nice alignment - l = Gtk.Label("") - l.show() - self.box_all_drawings.pack_end(l, expand=True, fill=True, padding=100) + fake_label = Gtk.Label("") + fake_label.show() + self.box_all_drawings.pack_end(fake_label, expand=True, fill=True, padding=100) self._zoom = 0 self._want_listen = True