Skip to content

Commit 038e6bc

Browse files
committed
Format.
1 parent c8c3623 commit 038e6bc

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

MODULE.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ oci.pull(
116116
use_repo(oci, "ubuntu", "ubuntu_linux_amd64", "ubuntu_linux_arm64_v8")
117117

118118
local_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:local.bzl", "local_repository")
119+
119120
local_repository(
120121
name = "rpy610_test",
121122
path = "./py/tests/rpy610/subrepo",

py/tests/rpy610/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ py_venv_test(
1111
main = "test.py",
1212
deps = [
1313
"@pypi_cowsay//:pkg",
14-
"@rpy610_test//:foo"
14+
"@rpy610_test//:foo",
1515
],
1616
)

py/tests/rpy610/subrepo/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ load("@aspect_rules_py//py:defs.bzl", "py_library")
33
py_library(
44
name = "foo",
55
srcs = [
6-
"foo.py"
6+
"foo.py",
77
],
88
imports = ["."],
9-
visibility = ["//visibility:public"]
9+
visibility = ["//visibility:public"],
1010
)

0 commit comments

Comments
 (0)