diff options
Diffstat (limited to 'git/refs')
-rw-r--r-- | git/refs/head.py | 1 | ||||
-rw-r--r-- | git/refs/remote.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/git/refs/head.py b/git/refs/head.py index 750d15b6..18dac349 100644 --- a/git/refs/head.py +++ b/git/refs/head.py @@ -114,6 +114,7 @@ class Head(Reference): @classmethod def delete(cls, repo, *heads, **kwargs): """Delete the given heads + :param force: If True, the heads will be deleted even if they are not yet merged into the main development stream. 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.""" |