Skip to content

Commit 66e88e2

Browse files
committed
Fixup pre-commit
1 parent f5800c2 commit 66e88e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

py/private/py_venv/py_venv.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,10 +243,10 @@ def _py_venv_binary_impl(ctx):
243243
executable = ctx.outputs.executable,
244244
runfiles = rfs,
245245
),
246-
RunEnvironmentInfo(
246+
RunEnvironmentInfo(
247247
environment = passed_env,
248248
inherited_environment = getattr(ctx.attr, "env_inherit", []),
249-
),
249+
),
250250
]
251251

252252
_attrs = dict({

py/tests/py-internal-venv/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ py_venv_test(
1717
py_venv_test(
1818
name = "test_env_vars",
1919
srcs = ["test_env_vars.py"],
20-
main = "test_env_vars.py",
2120
env = {
2221
"ONE": "un",
2322
"TWO": "deux",
2423
"RULEDIR": "$(RULEDIR)",
2524
"LOCATION": "$(location :test_env_vars.py)",
2625
"DEFINE": "$(SOME_VAR)",
2726
},
27+
main = "test_env_vars.py",
2828
)

0 commit comments

Comments
 (0)