Apply buildifier

This commit is contained in:
Adam Liddell 2021-11-28 23:02:46 +00:00
parent e4621df995
commit d54dc04f9d
1 changed files with 8 additions and 2 deletions

View File

@ -15,7 +15,10 @@ genrule(
proto_library(
name = "proto_lib",
srcs = ["generated.proto", "static.proto"],
srcs = [
"generated.proto",
"static.proto",
],
deps = ["@another_workspace//:proto_lib"],
)
@ -28,5 +31,8 @@ py_test(
name = "test",
srcs = ["main.py"],
main = "main.py",
deps = ["py_lib", "@another_workspace//:py_lib"],
deps = [
"py_lib",
"@another_workspace//:py_lib",
],
)