Skip to content

Commit 1d3de79

Browse files
committed
run pre-commit
1 parent 9c9c8b0 commit 1d3de79

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

python/bin/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ label_flag(
2626

2727
py_repl_binary(
2828
name = "repl",
29-
visibility = ["//visibility:public"],
3029
stub = ":repl_stub",
30+
visibility = ["//visibility:public"],
3131
deps = [
3232
":repl_dep",
3333
":repl_stub_dep",

python/private/repl.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ _generate_repl_main = rule(
3434
},
3535
)
3636

37-
def py_repl_binary(name, stub, deps=[], data=[], **kwargs):
37+
def py_repl_binary(name, stub, deps = [], data = [], **kwargs):
3838
_generate_repl_main(
3939
name = "%s_py" % name,
4040
src = stub,
@@ -52,5 +52,5 @@ def py_repl_binary(name, stub, deps=[], data=[], **kwargs):
5252
deps = deps + [
5353
"//python/runfiles",
5454
],
55-
**kwargs,
55+
**kwargs
5656
)

python/private/repl_template.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
from python.runfiles import runfiles
66

7-
87
STUB_PATH = "%stub_path%"
98

109

0 commit comments

Comments
 (0)