summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2012-03-22 10:48:59 -0300
committerJohan Dahlin <jdahlin@litl.com>2012-03-22 11:31:44 -0300
commit03e597cb8f3b075efae556ee51a598695a883ad3 (patch)
treefb932c9d709a4dc00bc46c89ba3fdb2c2da00f1d /examples
parent21aeb19107b718293116e51ecd6479d4d7198b8f (diff)
downloadpygobject-03e597cb8f3b075efae556ee51a598695a883ad3.tar.gz
PEP8: Fix whitespace around operators
https://bugzilla.gnome.org/show_bug.cgi?id=672627
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/cairo-demo.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/cairo-demo.py b/examples/cairo-demo.py
index 5f5bf6b1..f7e50e07 100755
--- a/examples/cairo-demo.py
+++ b/examples/cairo-demo.py
@@ -34,10 +34,10 @@ 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.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()