Skip to content

Commit

Permalink
Fix a keyword-only call site.
Browse files Browse the repository at this point in the history
  • Loading branch information
warsaw committed Jul 27, 2024
1 parent 1dac31c commit 3d18f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/hatchling/cli/version/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def version_impl(
app.display(original_version)
return

updated_version = metadata.hatch.version.scheme.update(desired_version, original_version, version_data, force)
updated_version = metadata.hatch.version.scheme.update(desired_version, original_version, version_data, force=force)
source.set_version(updated_version, version_data)

app.display_info(f'Old: {original_version}')
Expand Down

0 comments on commit 3d18f26

Please sign in to comment.