Fix a couple of pep8 warnings
authorAntonio Ospite <ospite@studenti.unina.it>
Thu, 7 Mar 2013 19:08:59 +0000 (20:08 +0100)
committerAntonio 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

index 36db3ef..d6d67fe 100755 (executable)
@@ -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)