diff --git a/src/pipdeptree/_detect_env.py b/src/pipdeptree/_detect_env.py index cfb2f3f..36037e8 100644 --- a/src/pipdeptree/_detect_env.py +++ b/src/pipdeptree/_detect_env.py @@ -72,7 +72,7 @@ def detect_poetry_env_interpreter() -> Path | None: # active interpreter. # See https://python-poetry.org/docs/managing-environments/#displaying-the-environment-information. try: - result = subprocess.run( + result = subprocess.run( # noqa: S603 ("poetry", "env", "info", "--executable"), check=True, text=True,