summaryrefslogtreecommitdiff
path: root/scripts/cros_mark_as_stable.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/cros_mark_as_stable.py')
-rw-r--r--scripts/cros_mark_as_stable.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/cros_mark_as_stable.py b/scripts/cros_mark_as_stable.py
index 898abdd79..577de227c 100644
--- a/scripts/cros_mark_as_stable.py
+++ b/scripts/cros_mark_as_stable.py
@@ -162,7 +162,13 @@ class GitBranch(object):
"""Wrapper class for a git branch."""
def __init__(self, branch_name, tracking_branch, cwd):
- """Sets up variables but does not create the branch."""
+ """Sets up variables but does not create the branch.
+
+ Arguments:
+ branch_name: The name of the branch.
+ tracking_branch: The associated tracking branch.
+ cwd: The git repository to work in.
+ """
self.branch_name = branch_name
self.tracking_branch = tracking_branch
self.cwd = cwd