From 8a61d3268aae4f4637e59b22e62336dea0716b69 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Wed, 18 Mar 2026 22:53:17 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20lecture=20du=20dataframe=20plus=20flexib?= =?UTF-8?q?le=20dans=20la=20cr=C3=A9ation=20de=20l'histogram?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/acheteur.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/acheteur.py b/src/pages/acheteur.py index c6ffd9d..a51846a 100644 --- a/src/pages/acheteur.py +++ b/src/pages/acheteur.py @@ -490,7 +490,7 @@ def reset_view(n_clicks): Input("acheteur_data", "data"), ) def update_acheteur_distance_histogram(data): - lff = pl.LazyFrame(data) + lff = pl.LazyFrame(data, strict=False, infer_schema_length=5000) fig = get_distance_histogram(lff) return make_card( title="Distance acheteur–titulaire",