aboutsummaryrefslogtreecommitdiff
path: root/git/objects/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/objects/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/objects/tag.py')
-rw-r--r--git/objects/tag.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/git/objects/tag.py b/git/objects/tag.py
index b34c5945..3690dc45 100644
--- a/git/objects/tag.py
+++ b/git/objects/tag.py
@@ -13,7 +13,9 @@ from util import (
__all__ = ("TagObject", )
+
class TagObject(base.Object):
+
"""Non-Lightweight tag carrying additional information about an object we are pointing to."""
type = "tag"
__slots__ = ( "object", "tag", "tagger", "tagged_date", "tagger_tz_offset", "message" )