diff options
author | Robert Guo <robert.guo@mongodb.com> | 2022-05-31 14:37:42 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-05-31 15:03:45 +0000 |
commit | 86cb7ea3649b2190958a1645de9d3df4a529fc90 (patch) | |
tree | d151ad13d193180966201ec4e619ec4e422313cc /buildscripts/linter/git_base.py | |
parent | 2fe7afd99f8158306415470286622c3712bebce3 (diff) | |
download | mongo-r6.0.0-rc8.tar.gz |
SERVER-65672 upgrade python packages to support 3.10r6.0.0-rc8
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 |