From c5402739a9e8270605d2e9c21f1d1ebde7792a23 Mon Sep 17 00:00:00 2001 From: codewithfourtix Date: Sun, 1 Mar 2026 19:00:07 +0500 Subject: [PATCH] Remove duplicate '/project.clj' key in _MANIFEST_ENDS dict The '/project.clj': 'clojure' entry appeared twice in the _MANIFEST_ENDS dictionary in classify.py. The second entry silently overwrote the first. Remove the duplicate to clean up the code. Signed-off-by: codewithfourtix --- src/summarycode/classify.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/summarycode/classify.py b/src/summarycode/classify.py index e07d6604826..03eb8d63dd3 100644 --- a/src/summarycode/classify.py +++ b/src/summarycode/classify.py @@ -45,7 +45,6 @@ def get_relative_path(root_path, path): _MANIFEST_ENDS = { '.about': 'ABOUT file', '/bower.json': 'bower', - '/project.clj': 'clojure', '.podspec': 'cocoapod', '/composer.json': 'composer', '/description': 'cran',