Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/graphics/common.py
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-10-15 17:53:25 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-11-23 16:14:32 (GMT)
commite2231d56203dcc58cc8a8a873ab1eef1b56a629e (patch)
tree4ab1f9f1c4284515a1f83cb359b1d89c3c938a54 /tests/graphics/common.py
parent131c28bb724d89900a1707ad4cae726ba8e9ce5a (diff)
PEP8 cleanup: fix number of blank lines
Caught by pep8. Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
Diffstat (limited to 'tests/graphics/common.py')
-rw-r--r--tests/graphics/common.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/graphics/common.py b/tests/graphics/common.py
index 2f00099..1a7bf47 100644
--- a/tests/graphics/common.py
+++ b/tests/graphics/common.py
@@ -19,10 +19,12 @@ import gtk
from sugar.graphics.toolbutton import ToolButton
+
class Test(gtk.VBox):
def __init__(self):
gtk.VBox.__init__(self)
+
class TestPalette(Test):
def __init__(self):
Test.__init__(self)
@@ -39,6 +41,7 @@ class TestPalette(Test):
def set_palette(self, palette):
self._invoker.set_palette(palette)
+
class TestRunner(object):
def run(self, test):
window = gtk.Window()
@@ -48,6 +51,7 @@ class TestRunner(object):
window.show()
+
def main(test):
runner = TestRunner()
runner.run(test)