Skip to content

Commit

Permalink
[App] Removing single quote (#16079)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherin Thomas authored and awaelchli committed Dec 19, 2022
1 parent 3485747 commit 6267ea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lightning_app/utilities/cli_helpers.py
Expand Up @@ -281,7 +281,7 @@ def _check_version_and_upgrade():
prompt = f"A newer version of {__package_name__} is available ({new_version}). Would you like to upgrade?"

if click.confirm(prompt, default=True):
command = f"pip install '{__package_name__}=={new_version}'"
command = f"pip install {__package_name__}=={new_version}"

logger.info(f"⚡ RUN: {command}")

Expand Down

0 comments on commit 6267ea2

Please sign in to comment.