Index: recipes/blink.py |
diff --git a/recipes/blink.py b/recipes/blink.py |
index fba16fb1564c474166e8d67862c46f8afbce3469..b3dd8f689faf9e171ff7d8b47c381cb473334917 100644 |
--- a/recipes/blink.py |
+++ b/recipes/blink.py |
@@ -3,10 +3,12 @@ |
# found in the LICENSE file. |
import json |
-# pylint: disable=F0401 |
-import recipe_util |
import sys |
+import recipe_util # pylint: disable=F0401 |
+ |
+ |
+# This class doesn't need an __init__ method, so we disable the warning |
# pylint: disable=W0232 |
class Blink(recipe_util.Recipe): |
"""Basic Recipe alias for Blink -> Chromium.""" |
@@ -20,16 +22,19 @@ class Blink(recipe_util.Recipe): |
'svn_ref': 'master', |
} |
} |
- return {'alias': { |
+ return { |
+ 'alias': { |
'recipe': 'chromium', |
- 'props': ['--webkit_rev=ToT', |
- '--submodule_git_svn_spec=' + json.dumps(submodule_spec)] |
- } |
+ 'props': [ |
+ '--webkit_rev=ToT', |
+ '--submodule_git_svn_spec=' + json.dumps(submodule_spec), |
+ ], |
+ }, |
} |
def main(argv=None): |
- Blink().handle_args(argv) |
+ return Blink().handle_args(argv) |
if __name__ == '__main__': |