Skip to content

Commit 2494deb

Browse files
committed
[NO TESTS] WIP
1 parent 3d0ffd8 commit 2494deb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

py/private/py_venv/py_venv.bzl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ def _py_venv_base_impl(ctx):
101101
rfs = _py_library.make_merged_runfiles(
102102
ctx,
103103
extra_depsets = [
104-
py_toolchain.files,
105-
srcs_depset,
106-
] + virtual_resolution.srcs + virtual_resolution.runfiles +
107-
([py_toolchain.files] if py_toolchain.runfiles_interpreter else []),
104+
py_toolchain.files,
105+
srcs_depset,
106+
] + virtual_resolution.srcs + virtual_resolution.runfiles +
107+
([py_toolchain.files] if py_toolchain.runfiles_interpreter else []),
108108
extra_runfiles_depsets = [
109109
ctx.attr._runfiles_lib[DefaultInfo].default_runfiles,
110110
],
@@ -135,11 +135,11 @@ def _py_venv_base_impl(ctx):
135135
),
136136
"--include-system-site-packages=" + ({
137137
True: "true",
138-
False: "false"
138+
False: "false",
139139
}[ctx.attr.include_system_site_packages]),
140140
"--include-user-site-packages=" + ({
141141
True: "true",
142-
False: "false"
142+
False: "false",
143143
}[ctx.attr.include_system_site_packages]),
144144
] + (["--debug"] if ctx.attr.debug else []),
145145
inputs = rfs.merge_all([
@@ -318,9 +318,9 @@ to be unusable. Many libraries assume these packages will always be available
318318
and may not reliably declare their dependencies such that Bazel will satisfy
319319
them, so choosing isolation could expose packaging errors.
320320
321-
"""
321+
""",
322322
),
323-
"include_user_site_packages": attr.bool(
323+
"include_user_site_packages": attr.bool(
324324
default = False,
325325
doc = """`pyvenv.cfg` feature flag for the `aspect-include-user-site-packages` extension key.
326326
@@ -336,7 +336,7 @@ to be unusable. Many libraries assume these packages will always be available
336336
and may not reliably declare their dependencies such that Bazel will satisfy
337337
them, so choosing isolation could expose packaging errors.
338338
339-
"""
339+
""",
340340
),
341341
})
342342

0 commit comments

Comments
 (0)