From b58981abfdc231ef6933f4891b4b263edda0cda1 Mon Sep 17 00:00:00 2001 From: BenediktMKuehne Date: Thu, 21 Dec 2023 13:45:16 +0000 Subject: [PATCH] Revert "skipp f20 since we have EMBA problems" This reverts commit 3b002d33a566b7f83807ccfcd38ed09d8aacf2fc. --- embark/porter/importer.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/embark/porter/importer.py b/embark/porter/importer.py index cfa1a295..e2913547 100644 --- a/embark/porter/importer.py +++ b/embark/porter/importer.py @@ -33,10 +33,8 @@ def result_read_in(analysis_id): res = f50_csv(file_, analysis_id) logger.debug("Result for %s created or updated", analysis_id) elif file_.endswith('f20_vul_aggregator.csv'): - logger.info("f20 readin for %s skipped", analysis_id) - # FIXME f20 in emba is broken! - # res = f20_csv(file_, analysis_id) - # logger.debug("Result for %s created or updated", analysis_id) + res = f20_csv(file_, analysis_id) + logger.debug("Result for %s created or updated", analysis_id) # TODO license info etc return res