revert for demo
All checks were successful
Check Deleted Workflows / check-deleted-workflows (pull_request) Successful in 1m5s

This commit is contained in:
2026-06-17 05:58:20 +00:00
parent e0ba120da4
commit 7c028ef02f

View File

@@ -33,8 +33,4 @@ def transform_example_dataset(df: pd.DataFrame) -> pd.DataFrame:
df["total_price"] = df["quantity"] * df["unit_price"] 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 return df