aboutsummaryrefslogtreecommitdiff
path: root/git/refs/tag.py
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2018-03-18 21:33:18 +0200
committerHugo <hugovk@users.noreply.github.com>2018-03-18 22:26:31 +0200
commitac4f7d34f8752ab78949efcaa9f0bd938df33622 (patch)
tree0c7acd1d3c1e0012d26d610c7a9fe81197e28a5e /git/refs/tag.py
parent14582df679a011e8c741eb5dcd8126f883e1bc71 (diff)
downloadGitPython-ac4f7d34f8752ab78949efcaa9f0bd938df33622.tar.gz
GitPython-ac4f7d34f8752ab78949efcaa9f0bd938df33622.zip
Rewrite unnecessary dict/list/tuple calls as literals
Diffstat (limited to 'git/refs/tag.py')
-rw-r--r--git/refs/tag.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/refs/tag.py b/git/refs/tag.py
index 37ee1240..8f88c522 100644
--- a/git/refs/tag.py
+++ b/git/refs/tag.py
@@ -17,7 +17,7 @@ class TagReference(Reference):
if tagref.tag is not None:
print(tagref.tag.message)"""
- __slots__ = tuple()
+ __slots__ = ()
_common_path_default = "refs/tags"
@property