From a8a954bc6922ae67be988452e13a84a53239112c Mon Sep 17 00:00:00 2001 From: David Sowder Date: Tue, 21 Feb 2012 17:21:37 -0600 Subject: [PATCH] pep8 compliance: E261 at least two spaces before inline comment --- albow/widget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/albow/widget.py b/albow/widget.py index 1ac7198..850a963 100644 --- a/albow/widget.py +++ b/albow/widget.py @@ -168,7 +168,7 @@ class Widget(object): resize = False anchor = self.anchor if dw: - factors = [1, 1, 1] #left, width, right + factors = [1, 1, 1] # left, width, right if 'r' in anchor: factors[2] = 0; if 'w' in anchor: factors[1] = 0; if 'l' in anchor: factors[0] = 0; @@ -181,7 +181,7 @@ class Widget(object): #left = (left + width) + factors[2] * dw / sum(factors) - width; if dh: - factors = [1, 1, 1] #bottom, height, top + factors = [1, 1, 1] # bottom, height, top if 't' in anchor: factors[2] = 0; if 'h' in anchor: factors[1] = 0; if 'b' in anchor: factors[0] = 0;