From a6f59b69f2fc1fce4b43ba24fca57eef65900cdf Mon Sep 17 00:00:00 2001 From: Wagner Macedo Date: Tue, 4 Apr 2023 20:46:38 +0200 Subject: [PATCH] Update src/poetry/console/commands/run.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Randy Döring <30527984+radoering@users.noreply.github.com> --- src/poetry/console/commands/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poetry/console/commands/run.py b/src/poetry/console/commands/run.py index de9d07ba6fc..5b008a2fc53 100644 --- a/src/poetry/console/commands/run.py +++ b/src/poetry/console/commands/run.py @@ -64,7 +64,7 @@ def run_script(self, script: str | dict[str, str], args: list[str]) -> int: args = [str(script_path), *args[1:]] break else: - # If reach this point, the script is not installed + # If we reach this point, the script is not installed self._warning_not_installed_script(args[0]) if isinstance(script, dict):