summaryrefslogtreecommitdiff
path: root/git/refs/remote.py
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2014-11-16 21:09:47 +0100
committerAntoine Musso <hashar@free.fr>2014-11-16 21:09:47 +0100
commitc8e70749887370a99adeda972cc3503397b5f9a7 (patch)
tree38e1241fd6d756f783b6b56dc6628ac3ca41ed4f /git/refs/remote.py
parentbed3b0989730cdc3f513884325f1447eb378aaee (diff)
downloadgitpython-c8e70749887370a99adeda972cc3503397b5f9a7.tar.gz
pep8 linting (trailing whitespace)
W291 trailing whitespace
Diffstat (limited to 'git/refs/remote.py')
-rw-r--r--git/refs/remote.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/git/refs/remote.py b/git/refs/remote.py
index 394ad9e5..e3827ad9 100644
--- a/git/refs/remote.py
+++ b/git/refs/remote.py
@@ -26,11 +26,11 @@ class RemoteReference(Head):
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: