aboutsummaryrefslogtreecommitdiff
path: root/git/objects/tag.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-11-19 12:16:44 +0100
committerSebastian Thiel <byronimo@gmail.com>2014-11-19 12:16:44 +0100
commit257264743154b975bc156f425217593be14727a9 (patch)
tree755ccbe76bc225ef237264e1b45bcb17202087ec /git/objects/tag.py
parent4d9b7b09a7c66e19a608d76282eacc769e349150 (diff)
downloadGitPython-257264743154b975bc156f425217593be14727a9.tar.gz
GitPython-257264743154b975bc156f425217593be14727a9.zip
Applied autopep8
Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
Diffstat (limited to 'git/objects/tag.py')
-rw-r--r--git/objects/tag.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/git/objects/tag.py b/git/objects/tag.py
index 3fd7a4d4..3c379579 100644
--- a/git/objects/tag.py
+++ b/git/objects/tag.py
@@ -7,9 +7,9 @@
import base
from gitdb.util import hex_to_bin
from util import (
- get_object_type_by_name,
- parse_actor_and_date
- )
+ get_object_type_by_name,
+ parse_actor_and_date
+)
__all__ = ("TagObject", )
@@ -21,7 +21,7 @@ class TagObject(base.Object):
__slots__ = ("object", "tag", "tagger", "tagged_date", "tagger_tz_offset", "message")
def __init__(self, repo, binsha, object=None, tag=None,
- tagger=None, tagged_date=None, tagger_tz_offset=None, message=None):
+ tagger=None, tagged_date=None, tagger_tz_offset=None, message=None):
"""Initialize a tag object with additional data
:param repo: repository this object is located in