Skip to content

Commit

Permalink
Readd # noqa: S603 to _detect_env to resolve Ruff error (#388)
Browse files Browse the repository at this point in the history
Whoops, not sure why the pre-commit bot decided to remove this ignore
rule in the first place.
  • Loading branch information
kemzeb authored Jul 4, 2024
1 parent 6fb5619 commit 91188b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipdeptree/_detect_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 91188b3

Please sign in to comment.