Skip to content

Commit 3140087

Browse files
authored
fix(py_library): don't return transitive srcs as defaultinfo (#221)
1 parent 01f048c commit 3140087

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/private/py_library.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def _py_library_impl(ctx):
129129

130130
return [
131131
DefaultInfo(
132-
files = depset(direct = ctx.files.srcs, transitive = [transitive_srcs]),
132+
files = depset(direct = ctx.files.srcs),
133133
default_runfiles = runfiles,
134134
),
135135
PyInfo(

0 commit comments

Comments
 (0)