From 2d43654c81b5629d2b1b94f5356a608404082d06 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Fri, 16 Jan 2026 14:08:42 +0100 Subject: [PATCH] =?UTF-8?q?Ignore=20les=20champs=20absents=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 add2e81..d7a0606 100644 --- a/src/utils.py +++ b/src/utils.py @@ -334,7 +334,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,