summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2012-03-22 10:56:59 -0300
committerJohan Dahlin <jdahlin@litl.com>2012-03-22 11:32:00 -0300
commitd1f5474c6c50163aefe660e0689dc7f30e6cd48b (patch)
treebae0704f1606ef83279b6f0e9f35de76873ddf09 /examples
parent032fcce2bf6070a9001cbb780e90403051e303b1 (diff)
downloadpygobject-d1f5474c6c50163aefe660e0689dc7f30e6cd48b.tar.gz
PEP8: Remaining whitespace fixes
https://bugzilla.gnome.org/show_bug.cgi?id=672627
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/cairo-demo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cairo-demo.py b/examples/cairo-demo.py
index f7e50e07..7b90ec3e 100755
--- a/examples/cairo-demo.py
+++ b/examples/cairo-demo.py
@@ -34,8 +34,8 @@ def bowtie(ctx):
def inf(ctx):
ctx.move_to(0, SIZE)
- ctx.rel_curve_to(0, SIZE, SIZE, SIZE, 2 * SIZE, 0)
- ctx.rel_curve_to(SIZE, -SIZE, 2 * SIZE, -SIZE, 2 * SIZE, 0)
+ ctx.rel_curve_to(0, SIZE, SIZE, SIZE, 2 * SIZE, 0)
+ ctx.rel_curve_to(SIZE, -SIZE, 2 * SIZE, -SIZE, 2 * SIZE, 0)
ctx.rel_curve_to(0, SIZE, -SIZE, SIZE, - 2 * SIZE, 0)
ctx.rel_curve_to(-SIZE, -SIZE, - 2 * SIZE, -SIZE, - 2 * SIZE, 0)
ctx.close_path()