Edit depot_tools recipe_modules docstrings for consistency

Change-Id: I454e9c90d3159598ae34d97d22c96b9d20d55f80
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2521656
Reviewed-by: Andrii Shyshkalov <tandrii@google.com>
Commit-Queue: Quinten Yearsley <qyearsley@chromium.org>
This commit is contained in:
Quinten Yearsley
2020-11-06 19:55:18 +00:00
committed by LUCI CQ
parent 91bb7506bd
commit b674f8a277
18 changed files with 308 additions and 291 deletions

View File

@@ -7,6 +7,7 @@ from recipe_engine import recipe_api
import string
class GitClApi(recipe_api.RecipeApi):
def __call__(self, subcmd, args, name=None, **kwargs):
if not name:
name = 'git_cl ' + subcmd
@@ -47,4 +48,3 @@ class GitClApi(recipe_api.RecipeApi):
def issue(self, **kwargs):
return self('issue', [], stdout=self.m.raw_io.output(), **kwargs)