From acaf78da88b22aba5b44fa094a822d294fff364c Mon Sep 17 00:00:00 2001 From: clockback Date: Fri, 22 Sep 2023 09:56:18 +1200 Subject: [PATCH] Update core.py Iterating over the analyzer features rather than the analyzer names when attempting to obtain features. --- codesurvey/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codesurvey/core.py b/codesurvey/core.py index d2e86a4..5deb8d9 100644 --- a/codesurvey/core.py +++ b/codesurvey/core.py @@ -68,7 +68,7 @@ def get_pbars(self, *, disable_progress: bool, if progress_analyzer_features is None: all_features = [ feature - for features in self.analyzer_features + for features in self.analyzer_features.values() for feature in features ] max_auto_feature_progress = 10