We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82b60ab commit da88d36Copy full SHA for da88d36
git/objects/tag.py
@@ -27,9 +27,13 @@ class TagObject(base.Object):
27
type = "tag"
28
__slots__ = ("object", "tag", "tagger", "tagged_date", "tagger_tz_offset", "message")
29
30
- def __init__(self, repo: 'Repo', binsha: bytes, object: Union[None, base.Object] = None,
31
- tag: Union[None, str] = None, tagger: Union[None, Actor] = None, tagged_date: Union[int, None] = None,
32
- tagger_tz_offset: Union[int, None] = None, message: Union[str, None] = None
+ def __init__(self, repo: 'Repo', binsha: bytes,
+ object: Union[None, base.Object] = None,
+ tag: Union[None, str] = None,
33
+ tagger: Union[None, 'Actor'] = None,
34
+ tagged_date: Union[int, None] = None,
35
+ tagger_tz_offset: Union[int, None] = None,
36
+ message: Union[str, None] = None
37
) -> None: # @ReservedAssignment
38
"""Initialize a tag object with additional data
39
0 commit comments