Skip to content

Commit 6f5eb5a

Browse files
committed
Fixed performance metrics display for installs.
1 parent b6e7d74 commit 6f5eb5a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

omnipkg/package_meta_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -833,8 +833,8 @@ def run(self, targeted_packages: Optional[List[str]]=None, newly_active_packages
833833

834834
safe_print("\n" + "─" * 60)
835835
safe_print("🚀 KNOWLEDGE BASE BUILD - PERFORMANCE SUMMARY 🚀")
836-
safe_print(f" - ⏱️ Total Time: {total_seconds:.2f}s for {total_packages} packages")
837-
safe_print(f" - 🔥 Average Throughput: {throughput:.2f} pkg/s")
836+
safe_print(f" - ⏱️ Total Time: {total_time:.2f}s for {total_packages} packages")
837+
safe_print(f" - 🔥 Average Throughput: {pkgs_per_sec:.2f} pkg/s")
838838
safe_print("─" * 60)
839839

840840
safe_print(_('🎉 Metadata building complete! Updated {} package(s) for this context.').format(updated_count))

0 commit comments

Comments
 (0)