Skip to content

Commit

Permalink
fix: Remove trailing parenthesis from logged version (#767)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jun 29, 2022
1 parent e11acd6 commit e1fa4a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/plugin_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def print_version(
print_fn: A function to use to display the plugin version.
Defaults to :function:`print`.
"""
print_fn(f"{cls.name} v{cls.plugin_version}, Meltano SDK v{cls.sdk_version})")
print_fn(f"{cls.name} v{cls.plugin_version}, Meltano SDK v{cls.sdk_version}")

@classmethod
def _get_about_info(cls: Type["PluginBase"]) -> Dict[str, Any]:
Expand Down

0 comments on commit e1fa4a4

Please sign in to comment.