Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Feb 10, 2025
1 parent ff3d7e3 commit 9fb1be8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "eigen", version = "3.4.0")
bazel_dep(name = "pybind11_bazel", version = "2.13.6")
bazel_dep(name = "rules_python", version = "0.36.0")
bazel_dep(name = "platforms", version="0.0.11")
bazel_dep(name = "platforms", version = "0.0.11")

# Gazebo Dependencies
bazel_dep(name = "rules_gazebo", version = "0.0.2")
Expand Down
10 changes: 5 additions & 5 deletions examples/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ example_sources = glob(
example_sources_py = glob(
include = [
"*.py",
]
],
)

[py_binary(
name = src.replace(".py", "_py"),
srcs = [src],
main = src,
deps = ["//:python"]
name = src.replace(".py", "_py"),
srcs = [src],
main = src,
deps = ["//:python"],
) for src in example_sources_py]

0 comments on commit 9fb1be8

Please sign in to comment.