Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1117)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/options.py

Issue 1839193004: Run auto-formatter (autopep8) on webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/options.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/options.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/options.py
index 4cd2b7d26a6ee789eddc67af897d390708f25c89..80ebb1b4cad1052ec558541a069fc11500c0b706 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/options.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/options.py
@@ -28,8 +28,11 @@
from optparse import make_option
+
class Options(object):
confirm = make_option("--no-confirm", action="store_false", dest="confirm", default=True, help="Skip confirmation steps.")
- git_commit = make_option("-g", "--git-commit", action="store", dest="git_commit", help="Operate on a local commit. If a range, the commits are squashed into one. <ref>.... includes the working copy changes. UPSTREAM can be used for the upstream/tracking branch.")
- parent_command = make_option("--parent-command", action="store", dest="parent_command", default=None, help="(Internal) The command that spawned this instance.")
+ git_commit = make_option("-g", "--git-commit", action="store", dest="git_commit",
+ help="Operate on a local commit. If a range, the commits are squashed into one. <ref>.... includes the working copy changes. UPSTREAM can be used for the upstream/tracking branch.")
+ parent_command = make_option("--parent-command", action="store", dest="parent_command",
+ default=None, help="(Internal) The command that spawned this instance.")
quiet = make_option("--quiet", action="store_true", dest="quiet", default=False, help="Produce less console output.")

Powered by Google App Engine
This is Rietveld 408576698