summaryrefslogtreecommitdiff
path: root/git/refs
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-07-19 19:10:45 +0100
committerYobmod <yobmod@gmail.com>2021-07-19 19:10:45 +0100
commit9e5e969479ec6018e1ba06b95bcdefca5b0082a4 (patch)
tree574e03c6c4acd1067e3b285974651ec9e9529a49 /git/refs
parent9a587e14d509cc77bf47b9591d1def3e5a1df570 (diff)
downloadgitpython-9e5e969479ec6018e1ba06b95bcdefca5b0082a4.tar.gz
Change remaining type comments to py3.6+ types
Diffstat (limited to 'git/refs')
-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 aa3b82a2..281ce09a 100644
--- a/git/refs/tag.py
+++ b/git/refs/tag.py
@@ -35,7 +35,7 @@ class TagReference(Reference):
_common_path_default = Reference._common_path_default + "/" + _common_default
@property
- def commit(self) -> 'Commit': # type: ignore[override] # LazyMixin has unrelated
+ def commit(self) -> 'Commit': # type: ignore[override] # LazyMixin has unrelated comit method
""":return: Commit object the tag ref points to
:raise ValueError: if the tag points to a tree or blob"""