From 4cc9e7b038c2444e388fb10132610a2207e8ef65 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Mon, 4 Mar 2024 20:09:20 +0100 Subject: [PATCH] Fix: lot transformation --- scripts/gold_mart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gold_mart.py b/scripts/gold_mart.py index 450b789..f6ee735 100644 --- a/scripts/gold_mart.py +++ b/scripts/gold_mart.py @@ -18,7 +18,7 @@ logger.setLevel(logging.DEBUG) def build_lots(dfs: list[pd.DataFrame]) -> pd.DataFrame: - df = dfs[0] + df = pd.concat(dfs) df = df.assign( Impact=df["Crédit"] - df["Débit"], )