diff options
Diffstat (limited to 'git/objects/tag.py')
| -rw-r--r-- | git/objects/tag.py | 2 |
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" ) |
