Readd `# noqa: S603` to _detect_env to resolve Ruff error (#388)

Whoops, not sure why the pre-commit bot decided to remove this ignore
rule in the first place.
This commit is contained in:
Kemal Zebari 2024-07-04 11:23:37 -07:00 committed by GitHub
parent 6fb5619adc
commit 91188b3b94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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,