Skip to content

Commit 5ddd017

Browse files
committed
Fix spellings
1 parent 322083e commit 5ddd017

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pipx/interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def _find_default_windows_python() -> str:
154154

155155
proc = subprocess.run([python, "-V"], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, check=False)
156156
if proc.returncode != 0:
157-
# Cover the 9009 return code pre-emptively.
157+
# Cover the 9009 return code preemptively.
158158
raise PipxError("No suitable Python found")
159159
if not proc.stdout.strip():
160160
# A real Python should print version, Windows Store stub won't.

src/pipx/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ def _add_run(subparsers: argparse._SubParsersAction, shared_parser: argparse.Arg
816816
f"""
817817
Download the latest version of a package to a temporary virtual environment,
818818
then run an app from it. The environment will be cached
819-
and re-used for up to {constants.TEMP_VENV_EXPIRATION_THRESHOLD_DAYS} days. This
819+
and reused for up to {constants.TEMP_VENV_EXPIRATION_THRESHOLD_DAYS} days. This
820820
means subsequent calls to 'run' for the same package will be faster
821821
since they can reuse the cached Virtual Environment.
822822

0 commit comments

Comments
 (0)