projects
/
experiments
/
cairo-gtk.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ea16d8
)
Fix a couple of pep8 warnings
author
Antonio Ospite <ospite@studenti.unina.it>
Thu, 7 Mar 2013 19:08:59 +0000
(20:08 +0100)
committer
Antonio Ospite <ospite@studenti.unina.it>
Thu, 7 Mar 2013 19:08:59 +0000
(20:08 +0100)
cairo-gtk-animation.py:122:13: E128 continuation line under-indented for visual indent
cairo-gtk-animation.py:123:13: E128 continuation line under-indented for visual indent
cairo-gtk-animation.py
patch
|
blob
|
history
diff --git
a/cairo-gtk-animation.py
b/cairo-gtk-animation.py
index
36db3ef
..
d6d67fe
100755
(executable)
--- a/
cairo-gtk-animation.py
+++ b/
cairo-gtk-animation.py
@@
-110,7
+110,8
@@
class AnimatedApp(Gtk.Application):
if __name__ == "__main__":
- app = AnimatedApp("AnimatedApp", 640, 480,
- application_id="apps.test.animatedapp",
- flags=Gio.ApplicationFlags.FLAGS_NONE)
+ app = AnimatedApp(
+ "AnimatedApp", 640, 480,
+ application_id="apps.test.animatedapp",
+ flags=Gio.ApplicationFlags.FLAGS_NONE)
app.run(None)