Skip to content

Commit 544cf87

Browse files
committed
fix: Removed orphaned dict comprehension causing KB update hang
1 parent ea6c1e6 commit 544cf87

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/omnipkg/package_meta_builder.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1588,12 +1588,7 @@ def run(
15881588

15891589
distributions_to_process = valid_distributions
15901590
# ----------------------------------------------------------
1591-
1592-
{
1593-
canonicalize_name(dist.metadata["Name"]): dist.version
1594-
for dist in distributions_to_process
1595-
if self._get_install_context(dist)["install_type"] == "active"
1596-
}
1591+
# NOTE: Removed orphaned dict comprehension that was causing hangs
15971592

15981593
all_packages_to_scan = {}
15991594
for dist in distributions_to_process:

0 commit comments

Comments
 (0)