diff options
author | Kian Cross <kian@kiancross.co.uk> | 2020-07-13 15:45:55 +0100 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-07-13 22:55:29 +0800 |
commit | 30387f16920f69544fcc7db40dfae554bcd7d1cc (patch) | |
tree | 93012b9f2780edf7201d5ff20deec2e083837cbd /git/remote.py | |
parent | 9b68361c8b81b23be477b485e2738844e0832b2f (diff) | |
download | gitpython-30387f16920f69544fcc7db40dfae554bcd7d1cc.tar.gz |
Fixed all warnings in documentation and updated Makefile to treat warnings as errors.
Diffstat (limited to 'git/remote.py')
-rw-r--r-- | git/remote.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/git/remote.py b/git/remote.py index 37c0ccd3..06e9d3b7 100644 --- a/git/remote.py +++ b/git/remote.py @@ -827,10 +827,8 @@ class Remote(LazyMixin, Iterable): * None to discard progress information * A function (callable) that is called with the progress information. - Signature: ``progress(op_code, cur_count, max_count=None, message='')``. - - `Click here <http://goo.gl/NPa7st>`_ for a description of all arguments + `Click here <http://goo.gl/NPa7st>`__ for a description of all arguments given to the function. * An instance of a class derived from ``git.RemoteProgress`` that overrides the ``update()`` function. |