Skip to content

Commit 7a40853

Browse files
committed
format
1 parent ea331e4 commit 7a40853

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

examples/site-packages/MODULE.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,4 @@ pip.parse(
2828
requirements_lock = "requirements.txt",
2929
# enable_implicit_namespace_pkgs = False,
3030
)
31-
3231
use_repo(pip, "pypi")

examples/site-packages/test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import jax
44
import mujoco
5+
56
# `mjx` does not work because "it's a prefix of the other."
67
# from mujoco import mjx
78
import nvidia

tests/support/copy_file.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ def _copy_file_to_dir_impl(ctx):
1616
copy_file_to_dir = rule(
1717
implementation = _copy_file_to_dir_impl,
1818
attrs = {
19+
"out_dir": attr.string(mandatory = True),
1920
"src": attr.label(
2021
allow_single_file = True,
2122
mandatory = True,
2223
),
23-
"out_dir": attr.string(mandatory = True),
2424
},
2525
)

0 commit comments

Comments
 (0)