Skip to content

Commit 1bae96d

Browse files
authored
Missed a parenthesis
1 parent f3880eb commit 1bae96d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/post/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def _match_version_str(text, regex):
7272
@return The version component as integer
7373
"""
7474
match = regex.search(text)
75-
return match.group(1))
75+
return match.group(1)
7676

7777

7878
def get_source_version(date_version: datetime, tag_name: str) -> semantic_version.Version:

0 commit comments

Comments
 (0)