Skip to content

Commit 492e2e3

Browse files
[pre-commit.ci] pre-commit autoupdate (#28)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 22.6.0 → 22.8.0](psf/black@22.6.0...22.8.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 799bb21 commit 492e2e3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ repos:
6363
args: [--lines-after-imports, "-1"]
6464

6565
- repo: https://github.com/psf/black
66-
rev: 22.6.0
66+
rev: 22.8.0
6767
hooks:
6868
- id: black
6969

src/poetry_plugin_bundle/bundlers/venv_bundler.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,10 @@ def _get_executable_info(self, executable: str) -> tuple[str, Version]:
220220
[
221221
executable,
222222
"-c",
223-
"\"import sys; print('.'.join([str(s) for s in"
224-
' sys.version_info[:3]]))"',
223+
(
224+
"\"import sys; print('.'.join([str(s) for s in"
225+
' sys.version_info[:3]]))"'
226+
),
225227
]
226228
),
227229
shell=True,

0 commit comments

Comments
 (0)