File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ _LockInfo = provider(
3535 },
3636)
3737
38- def _impl2 (ctx ):
38+ def _lock_impl (ctx ):
3939 args = ctx .attr .args
4040 srcs = ctx .files .srcs
4141 existing_output = ctx .files .existing_output
@@ -105,7 +105,7 @@ def _impl2(ctx):
105105 ]
106106
107107_lock = rule (
108- implementation = _impl2 ,
108+ implementation = _lock_impl ,
109109 doc = """\
110110 """ ,
111111 attrs = {
@@ -134,7 +134,7 @@ _lock = rule(
134134 ],
135135)
136136
137- def _impl3 (ctx ):
137+ def _lock_run_impl (ctx ):
138138 info = ctx .attr .lock [_LockInfo ]
139139 uv = info .uv
140140 srcs = info .srcs
@@ -179,7 +179,7 @@ def _impl3(ctx):
179179 ]
180180
181181_lock_run = rule (
182- implementation = _impl3 ,
182+ implementation = _lock_run_impl ,
183183 doc = """\
184184 """ ,
185185 attrs = {
You can’t perform that action at this time.
0 commit comments