Skip to content

Commit 18b1edf

Browse files
committed
Reapply "works: put back the sorting"
This reverts commit c269638.
1 parent 9f58c91 commit 18b1edf

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

python/private/common.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,7 @@ def _third_party_first(targets):
379379
This is because the DAG is going from first-party deps to third-party deps and usually
380380
no third-party deps include first-party deps.
381381
"""
382-
return targets
383-
# return sorted(targets, lambda x: PyInfo in x and not x[PyInfo].package)
382+
return sorted(targets, lambda x: PyInfo in x and not x[PyInfo].package)
384383

385384
def create_py_info(
386385
ctx,

0 commit comments

Comments
 (0)