From ef97cea679ffcb38cd68d3ba67a7e75ce3b0f0ee Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Thu, 22 Jan 2026 18:49:08 +0100 Subject: [PATCH] Exclure les colonnes _right et _left --- src/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils.py b/src/utils.py index a5eff2d..2d06223 100644 --- a/src/utils.py +++ b/src/utils.py @@ -362,7 +362,8 @@ def setup_table_columns( # Si le champ n'est pas dans le schéma et pas annoncé, on le skip print("Champ innatendu : ") print(dff[column_id].head()) - continue + if column_id.endswith("_right") or column_id.endswith("_left"): + continue column_name = column_id column = {