diff options
author | Johan Dahlin <johan@gnome.org> | 2012-03-22 10:56:59 -0300 |
---|---|---|
committer | Johan Dahlin <jdahlin@litl.com> | 2012-03-22 11:32:00 -0300 |
commit | d1f5474c6c50163aefe660e0689dc7f30e6cd48b (patch) | |
tree | bae0704f1606ef83279b6f0e9f35de76873ddf09 /examples/cairo-demo.py | |
parent | 032fcce2bf6070a9001cbb780e90403051e303b1 (diff) | |
download | pygobject-d1f5474c6c50163aefe660e0689dc7f30e6cd48b.tar.gz |
PEP8: Remaining whitespace fixes
https://bugzilla.gnome.org/show_bug.cgi?id=672627
Diffstat (limited to 'examples/cairo-demo.py')
-rwxr-xr-x | examples/cairo-demo.py | 4 |
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() |