Skip to content

Commit

Permalink
Inline the variable, relying on the parameter name for context.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 8, 2023
1 parent a77149e commit e9e4b62
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jaraco/develop/create-github-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
@autocommand.autocommand(__name__)
def run(project: github.Repo = github.Repo.detect()):
md = repo.get_project_metadata()
tag = f'v{md.version}'
project.create_release(tag)
project.create_release(tag=f'v{md.version}')

0 comments on commit e9e4b62

Please sign in to comment.