Skip to content

Commit 9d5e1bb

Browse files
authored
fix: wrong value of has_py3_only_sources in the PyInfo constructor
1 parent 394dda2 commit 9d5e1bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/private/py_info.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def _PyInfo_init(
146146
"direct_pyc_files": direct_pyc_files,
147147
"direct_pyi_files": direct_pyi_files,
148148
"has_py2_only_sources": has_py2_only_sources,
149-
"has_py3_only_sources": has_py2_only_sources,
149+
"has_py3_only_sources": has_py3_only_sources,
150150
"imports": imports,
151151
"transitive_implicit_pyc_files": transitive_implicit_pyc_files,
152152
"transitive_implicit_pyc_source_files": transitive_implicit_pyc_source_files,

0 commit comments

Comments
 (0)