added example for schedule, reset for demo
All checks were successful
Check Deleted Workflows / check-deleted-workflows (pull_request) Successful in 56s

This commit is contained in:
Richard Mrasek
2026-06-12 13:29:01 +02:00
parent d569f43dcc
commit 60096f840d
3 changed files with 21 additions and 13 deletions

View File

@@ -34,7 +34,5 @@ def transform_example_dataset(df: pd.DataFrame) -> pd.DataFrame:
df["price_band"] = df["total_price"].apply(
lambda value: "high" if value >= 25 else "standard"
)
df["total_price"] = df["quantity"] * df["unit_price"]
return df