aboutsummaryrefslogtreecommitdiff
path: root/git/refs/tag.py
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2014-11-16 20:51:04 +0100
committerAntoine Musso <hashar@free.fr>2014-11-16 20:51:21 +0100
commitbe34ec23c48d6d5d8fd2ef4491981f6fb4bab8e6 (patch)
tree7d0124054760421d95a6f675d8e843e42a72ad82 /git/refs/tag.py
parentf5d11b750ecc982541d1f936488248f0b42d75d3 (diff)
downloadGitPython-be34ec23c48d6d5d8fd2ef4491981f6fb4bab8e6.tar.gz
GitPython-be34ec23c48d6d5d8fd2ef4491981f6fb4bab8e6.zip
pep8 linting (blank lines expectations)
E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n)
Diffstat (limited to 'git/refs/tag.py')
-rw-r--r--git/refs/tag.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/git/refs/tag.py b/git/refs/tag.py
index 110fc612..2845ec7c 100644
--- a/git/refs/tag.py
+++ b/git/refs/tag.py
@@ -3,8 +3,8 @@ from reference import Reference
__all__ = ["TagReference", "Tag"]
-
class TagReference(Reference):
+
"""Class representing a lightweight tag reference which either points to a commit
,a tag object or any other object. In the latter case additional information,
like the signature or the tag-creator, is available.
@@ -86,6 +86,5 @@ class TagReference(Reference):
repo.git.tag("-d", *tags)
-
# provide an alias
Tag = TagReference