Skip to content

Commit 922c7e1

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e5ad407 commit 922c7e1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/virtualenv/discovery/windows/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ def propose_interpreters(spec, app_data, env):
3737
registry_spec = PythonSpec(None, implementation, major, minor, None, arch, exe, free_threaded=threaded)
3838
if skip_pre_filter or registry_spec.satisfies(spec):
3939
interpreter = Pep514PythonInfo.from_exe(
40-
exe, app_data, app_data.cache, raise_on_error=False, env=env,
40+
exe,
41+
app_data,
42+
app_data.cache,
43+
raise_on_error=False,
44+
env=env,
4145
)
4246
if interpreter is not None and interpreter.satisfies(spec, impl_must_match=True):
4347
yield interpreter # Final filtering/matching using interpreter metadata

0 commit comments

Comments
 (0)