From 5bcd17e8b0079c48114ff212eb73f3d4f8c858a4 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Fri, 16 Jan 2026 13:57:19 +0100 Subject: [PATCH] =?UTF-8?q?Skip=20les=20colonnes=20absentes=20du=20sch?= =?UTF-8?q?=C3=A9ma?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utils.py b/src/utils.py index f1e31f4..aef7acb 100644 --- a/src/utils.py +++ b/src/utils.py @@ -345,7 +345,9 @@ def setup_table_columns(dff, hideable: bool = True, exclude: list = None) -> tup if column_object: column_name = column_object.get("title") else: - column_name = column_id + # Si le champ n'est pas dans le schéma, on le skip + print(f"Champ innatendu : {column_id}") + continue column = { "name": column_name,