Skip to content

Commit 3fd0779

Browse files
LuisHenriLee-W
andcommitted
docs: accept type hint suggestions
Co-authored-by: Wei Lee <weilee.rx@gmail.com>
1 parent 4785100 commit 3fd0779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def get_current_branch() -> str:
5555
return c.out
5656

5757

58-
def create_tag(tag: str, message: str | None = None):
58+
def create_tag(tag: str, message: str | None = None) -> None:
5959
c = git.tag(tag, annotated=(message is not None), msg=message)
6060
if c.return_code != 0:
6161
raise exceptions.CommitError(c.err)

0 commit comments

Comments
 (0)