From 84ae56368b28f37a7a4b7940ae150fc0dcb3e738 Mon Sep 17 00:00:00 2001 From: Mary Brown Date: Mon, 15 Jun 2026 13:24:36 +0000 Subject: [PATCH] revert --- src/template_code_location/ops/ops.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/template_code_location/ops/ops.py b/src/template_code_location/ops/ops.py index 92ce9cf..3a73b18 100644 --- a/src/template_code_location/ops/ops.py +++ b/src/template_code_location/ops/ops.py @@ -33,8 +33,5 @@ def transform_example_dataset(df: pd.DataFrame) -> pd.DataFrame: df["total_price"] = df["quantity"] * df["unit_price"] - df["price_band"] = df["total_price"].apply( - lambda value: "high" if value >= 25 else "standard" - ) return df