diff options
Diffstat (limited to 'git/refs/remote.py')
-rw-r--r-- | git/refs/remote.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/git/refs/remote.py b/git/refs/remote.py index 6f075619..e3827ad9 100644 --- a/git/refs/remote.py +++ b/git/refs/remote.py @@ -7,30 +7,30 @@ import os __all__ = ["RemoteReference"] - + class RemoteReference(Head): + """Represents a reference pointing to a remote head.""" _common_path_default = Head._remote_common_path_default - - + @classmethod - def iter_items(cls, repo, common_path = None, remote=None): + def iter_items(cls, repo, common_path=None, remote=None): """Iterate remote references, and if given, constrain them to the given remote""" common_path = common_path or cls._common_path_default if remote is not None: common_path = join_path(common_path, str(remote)) # END handle remote constraint return super(RemoteReference, cls).iter_items(repo, common_path) - + @classmethod def delete(cls, repo, *refs, **kwargs): """Delete the given remote references. :note: - kwargs are given for compatability with the base class method as we + kwargs are given for compatability with the base class method as we should not narrow the signature.""" repo.git.branch("-d", "-r", *refs) - # the official deletion method will ignore remote symbolic refs - these - # are generally ignored in the refs/ folder. We don't though + # the official deletion method will ignore remote symbolic refs - these + # are generally ignored in the refs/ folder. We don't though # and delete remainders manually for ref in refs: try: @@ -38,7 +38,7 @@ class RemoteReference(Head): except OSError: pass # END for each ref - + @classmethod def create(cls, *args, **kwargs): """Used to disable this method""" |