diff options
Diffstat (limited to 'buildscripts/linter/git_base.py')
-rw-r--r-- | buildscripts/linter/git_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/buildscripts/linter/git_base.py b/buildscripts/linter/git_base.py index f7eaecae95c..f54bc8e87c5 100644 --- a/buildscripts/linter/git_base.py +++ b/buildscripts/linter/git_base.py @@ -236,6 +236,7 @@ class GitException(Exception): process_args: a list containing the git command and arguments (includes 'git' as its first element) that were run, if any. stderr: the error output of the git command. + """ def __init__( # pylint: disable=too-many-arguments @@ -258,6 +259,7 @@ class GitCommandResult(object): returncode: the return code. stdout: the output of the command. stderr: the error output of the command. + """ def __init__( # pylint: disable=too-many-arguments |