We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acea44a commit c685a42Copy full SHA for c685a42
python/uv/private/lock.bzl
@@ -35,7 +35,7 @@ _LockInfo = provider(
35
},
36
)
37
38
-def _impl2(ctx):
+def _lock_impl(ctx):
39
args = ctx.attr.args
40
srcs = ctx.files.srcs
41
existing_output = ctx.files.existing_output
@@ -105,7 +105,7 @@ def _impl2(ctx):
105
]
106
107
_lock = rule(
108
- implementation = _impl2,
+ implementation = _lock_impl,
109
doc = """\
110
""",
111
attrs = {
@@ -134,7 +134,7 @@ _lock = rule(
134
],
135
136
137
-def _impl3(ctx):
+def _lock_run_impl(ctx):
138
info = ctx.attr.lock[_LockInfo]
139
uv = info.uv
140
srcs = info.srcs
@@ -179,7 +179,7 @@ def _impl3(ctx):
179
180
181
_lock_run = rule(
182
- implementation = _impl3,
+ implementation = _lock_run_impl,
183
184
185
0 commit comments