Skip to content

Commit 005b6f2

Browse files
author
Sherin Thomas
authored
[App] Removing single quote (#16079)
1 parent b1ce263 commit 005b6f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lightning_app/utilities/cli_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def _check_version_and_upgrade():
281281
prompt = f"A newer version of {__package_name__} is available ({new_version}). Would you like to upgrade?"
282282

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

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

0 commit comments

Comments
 (0)