Skip to content

Commit 767db61

Browse files
pre-commit-ci[bot]neersighted
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5ddfc56 commit 767db61

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

install-poetry.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,9 @@ def __init__(self, return_code: int = 0, log: Optional[str] = None):
275275
class VirtualEnvironment:
276276
def __init__(self, path: Path) -> None:
277277
self._path = path
278-
self._bin_path = self._path.joinpath("Scripts" if WINDOWS and not MINGW else "bin")
278+
self._bin_path = self._path.joinpath(
279+
"Scripts" if WINDOWS and not MINGW else "bin"
280+
)
279281
# str is required for compatibility with subprocess run on CPython <= 3.7 on Windows
280282
self._python = str(
281283
self._path.joinpath(self._bin_path, "python.exe" if WINDOWS else "python")

0 commit comments

Comments
 (0)