Skip to content

Commit 37859b8

Browse files
committed
Init toolchain
1 parent 3a1f889 commit 37859b8

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

examples/bzlmod/other_module/MODULE.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ use_repo(
4646

4747
pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
4848
pip.parse(
49-
dependencies_file = ":requirements.in",
5049
hub_name = "other_module_pip",
5150
# NOTE: This version must be different than the root module's
5251
# default python version.

python/private/text_util.bzl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -99,20 +99,11 @@ def _render_tuple(items, *, value_repr = repr):
9999
")",
100100
])
101101

102-
def _render_call(rule, **kwargs):
103-
return "\n".join(
104-
["{}(".format(rule)] + [
105-
_indent("{} = {},".format(k, v))
106-
for k, v in kwargs.items()
107-
] + [")"],
108-
)
109-
110102
render = struct(
111103
alias = _render_alias,
112104
dict = _render_dict,
113105
indent = _indent,
114106
list = _render_list,
115107
select = _render_select,
116108
tuple = _render_tuple,
117-
call = _render_call,
118109
)

0 commit comments

Comments
 (0)