From a1f6ffd6b39f9b1b077cf98cf2346d2414c1c0c0 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 13 May 2026 16:24:34 +0000 Subject: [PATCH] =?UTF-8?q?Improvement=20Option=20Evaluation=20selected=20?= =?UTF-8?q?via=20substring=20match=20=F0=9F=9F=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/pashub_fetcher/pashub_client.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/pashub_fetcher/pashub_client.py b/backend/pashub_fetcher/pashub_client.py index d7200a1f..ba0f0221 100644 --- a/backend/pashub_fetcher/pashub_client.py +++ b/backend/pashub_fetcher/pashub_client.py @@ -90,6 +90,9 @@ class PashubClient: if file.evidence_category is not None and file.evidence_category.lower() == "retrofit design": return CoreFiles.RETROFIT_DESIGN_DOC + if CoreFiles.IMPROVEMENT_OPTION_EVALUATION.value in file.file_name: + return CoreFiles.IMPROVEMENT_OPTION_EVALUATION + for core_file in CoreFiles: if file.file_name.startswith(core_file.value): return core_file