Skip to content

Commit 631ab19

Browse files
committed
Change add_all argument for include_types
1 parent 878331c commit 631ab19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gazelle/modules_mapping/def.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def _modules_mapping_impl(ctx):
3131
transitive = [dep[DefaultInfo].files for dep in ctx.attr.wheels] + [dep[DefaultInfo].data_runfiles.files for dep in ctx.attr.wheels],
3232
)
3333
args.add("--output_file", modules_mapping.path)
34+
args.add("--include_stub_packages", ctx.attr.include_stub_packages)
3435
args.add_all("--exclude_patterns", ctx.attr.exclude_patterns)
35-
args.add_all("--include_stub_packages", ctx.attr.include_stub_packages)
3636
args.add_all("--wheels", [whl.path for whl in all_wheels.to_list()])
3737
ctx.actions.run(
3838
inputs = all_wheels.to_list(),

0 commit comments

Comments
 (0)