From ba664408fa32a5a31d321c8bda6ad55e4481047c Mon Sep 17 00:00:00 2001 From: David Sowder Date: Tue, 21 Feb 2012 18:44:35 -0600 Subject: [PATCH] pep8 compliance: E701 multiple statements on one line (colon) --- albow/controls.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/albow/controls.py b/albow/controls.py index 8c255ed..fe62bc7 100644 --- a/albow/controls.py +++ b/albow/controls.py @@ -171,7 +171,8 @@ class Label(Widget): for line in lines: if len(line): size = font.size(line) - if size[0] == 0: continue + if size[0] == 0: + continue image = font.render(line, True, fg) r = image.get_rect() @@ -308,7 +309,8 @@ class ValueDisplay(Control, Label): return "" -class SmallValueDisplay(ValueDisplay): pass +class SmallValueDisplay(ValueDisplay): + pass class ValueButton(ButtonBase, ValueDisplay):