From 37349afb53334838877c83e57ac25a5bfa627730 Mon Sep 17 00:00:00 2001 From: Maurice <zimmnau@ilr.rwth-aachen.de> Date: Tue, 25 Feb 2025 17:58:02 +0100 Subject: [PATCH] ACorrection of helper script --- .ci-scripts/utils/evaluate_designEvaluator_results.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci-scripts/utils/evaluate_designEvaluator_results.py b/.ci-scripts/utils/evaluate_designEvaluator_results.py index ce3b6643..9ab90bc0 100644 --- a/.ci-scripts/utils/evaluate_designEvaluator_results.py +++ b/.ci-scripts/utils/evaluate_designEvaluator_results.py @@ -21,9 +21,9 @@ def check_html_file(html_file): # Convert the HTML table to a Pandas DataFrame df = pd.read_html(StringIO(table))[0] - # Check the values in the fourth column (index 3) + # Check the values in the second column (index 1) has_deviation = False - for index, value in enumerate(df.iloc[:, 3]): + for index, value in enumerate(df.iloc[:, 1]): if not pd.isna(value) and value not in ['-nan', 'nan', 0]: first_column_value = df.iloc[index, 0] # Get the first column value of this row print(f"Warning: Deviation in '{first_column_value}'.") -- GitLab