← 返回首页
chore(lint): fix · gitpython-developers/GitPython@3d6e173 · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

Commit 3d6e173

Browse files
committed
chore(lint): fix
1 parent 82ae723 commit 3d6e173

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎git/refs/tag.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def commit(self):
3131
# it is a tag object which carries the commit as an object - we can point to anything
3232
obj = obj.object
3333
else:
34-
raise ValueError(("Cannot resolve commit as tag %s points to a %s object - "
35-
+ "use the `.object` property instead to access it") % (self, obj.type))
34+
raise ValueError(("Cannot resolve commit as tag %s points to a %s object - " +
35+
"use the `.object` property instead to access it") % (self, obj.type))
3636
return obj
3737

3838
@property

0 commit comments

Comments
 (0)

Footer

© 2026 GitHub, Inc.