8000 Don’t use keyword argument for TestEnvironment. (#954) · recht/rules_python@7262403 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7262403

Browse files
authored
Don’t use keyword argument for TestEnvironment. (bazel-contrib#954)
1 parent def63ad commit 7262403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/config_settings/transition.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _transition_py_impl(ctx):
6262
# RunEnvironmentInfo is not exposed in Bazel < 5.3.
6363
# https://github.com/bazelbuild/rules_python/issues/901
6464
# https://github.com/bazelbuild/bazel/commit/dbdfa07e92f99497be9c14265611ad2920161483
65-
testing.TestEnvironment(environment = env),
65+
testing.TestEnvironment(env),
6666
]
6767
return providers
6868

0 commit comments

Comments
 (0)
0