Skip to content

Commit 9ded103

Browse files
committed
Fix format
1 parent 12c897a commit 9ded103

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

bazel/python_rules.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
# limitations under the License.
1414
"""Generates and compiles Python gRPC stubs from proto_library rules."""
1515

16+
load("@com_google_protobuf//bazel:py_proto_library.bzl", protobuf_py_proto_library = "py_proto_library")
1617
load("@rules_proto//proto:defs.bzl", "ProtoInfo")
1718
load("@rules_python//python:py_info.bzl", "PyInfo")
18-
load("@com_google_protobuf//bazel:py_proto_library.bzl", protobuf_py_proto_library = "py_proto_library")
1919
load(
2020
"//bazel:protobuf.bzl",
2121
"declare_out_files",

src/proto/grpc/channelz/BUILD

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# limitations under the License.
1414

1515
load("//bazel:grpc_build_system.bzl", "grpc_package", "grpc_proto_library")
16-
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
1716

1817
licenses(["notice"])
1918

src/python/grpcio_channelz/grpc_channelz/v1/BUILD.bazel

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
2+
13
# Copyright 2021 The gRPC Authors
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -12,7 +14,6 @@
1214
# See the License for the specific language governing permissions and
1315
# limitations under the License.
1416
load("@rules_python//python:defs.bzl", "py_library")
15-
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
1617
load("//bazel:python_rules.bzl", "py_grpc_library", "py_proto_library")
1718

1819
package(default_visibility = ["//visibility:public"])

src/python/grpcio_health_checking/grpc_health/v1/BUILD.bazel

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
2+
13
# Copyright 2021 The gRPC Authors
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -12,7 +14,6 @@
1214
# See the License for the specific language governing permissions and
1315
# limitations under the License.
1416
load("@rules_python//python:defs.bzl", "py_library")
15-
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
1617
load("//bazel:python_rules.bzl", "py_grpc_library", "py_proto_library")
1718

1819
package(default_visibility = ["//visibility:public"])

src/python/grpcio_reflection/grpc_reflection/v1alpha/BUILD.bazel

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
2+
13
# Copyright 2021 The gRPC Authors
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -12,7 +14,6 @@
1214
# See the License for the specific language governing permissions and
1315
# limitations under the License.
1416
load("@rules_python//python:defs.bzl", "py_library")
15-
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
1617
load("//bazel:python_rules.bzl", "py_grpc_library", "py_proto_library")
1718

1819
package(default_visibility = ["//visibility:public"])

test/distrib/bazel/python/BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
load("@com_google_protobuf//bazel:py_proto_library.bzl", "py_proto_library")
1817
load(
1918
"@com_github_grpc_grpc//bazel:python_rules.bzl",
2019
"py_grpc_library",
2120
)
21+
load("@com_google_protobuf//bazel:py_proto_library.bzl", "py_proto_library")
2222
load("@rules_proto//proto:defs.bzl", "proto_library")
2323
load("@rules_python//python:defs.bzl", "py_library", "py_test")
2424
load("//:python_rules_test.bzl", "python_rules_test_suite")

0 commit comments

Comments
 (0)