diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-14 17:47:44 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-14 17:49:33 +0100 |
commit | 6569c4849197c9475d85d05205c55e9ef28950c1 (patch) | |
tree | 3dfb25f7c23a74e466e43ab6db87eeb4290712a7 /git/refs/remote.py | |
parent | 53e5fb3733e491925a01e9da6243e93c2e4214c1 (diff) | |
download | gitpython-6569c4849197c9475d85d05205c55e9ef28950c1.tar.gz |
Fixed some doc strings to build correctly with sphinx
Fixes #7
[ci skip]
Diffstat (limited to 'git/refs/remote.py')
-rw-r--r-- | git/refs/remote.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/refs/remote.py b/git/refs/remote.py index b692e6df..1f256b75 100644 --- a/git/refs/remote.py +++ b/git/refs/remote.py @@ -25,7 +25,8 @@ class RemoteReference(Head): @classmethod def delete(cls, repo, *refs, **kwargs): - """Delete the given remote references. + """Delete the given remote references + :note: kwargs are given for compatability with the base class method as we should not narrow the signature.""" |