From 1240553cf61028ba36a2d461ba618349ec8e2088 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Tue, 6 Aug 2019 19:09:42 -0300 Subject: [PATCH] removing profiling code --- fpakman/core/controller.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/fpakman/core/controller.py b/fpakman/core/controller.py index 6e40e2e2..1fef4db2 100755 --- a/fpakman/core/controller.py +++ b/fpakman/core/controller.py @@ -296,7 +296,6 @@ class GenericApplicationManager(ApplicationManager): suggestions.extend(man.list_suggestions(6)) def list_suggestions(self, limit: int) -> List[Application]: - ti = time.time() if self.managers: suggestions, threads = [], [] for man in self.managers: @@ -307,6 +306,4 @@ class GenericApplicationManager(ApplicationManager): for t in threads: t.join() - tf = time.time() - ti - print(tf) return suggestions