diff --git a/etl/steps/data/garden/ihme_gbd/2024-05-20/gbd_cause.py b/etl/steps/data/garden/ihme_gbd/2024-05-20/gbd_cause.py index eb2304aad02..b17a2ff6c4f 100644 --- a/etl/steps/data/garden/ihme_gbd/2024-05-20/gbd_cause.py +++ b/etl/steps/data/garden/ihme_gbd/2024-05-20/gbd_cause.py @@ -28,8 +28,12 @@ def run(dest_dir: str) -> None: tb_dalys["metric"] = "DALYs" # Format the tables - tb_deaths = tb_deaths.format(["country", "year", "measure", "age", "cause"], short_name="gbd_cause_deaths") - tb_dalys = tb_dalys.format(["country", "year", "measure", "age", "cause"], short_name="gbd_cause_dalys") + tb_deaths = tb_deaths.format(["country", "year", "measure", "age", "cause"], short_name="gbd_cause_deaths").drop( + columns="metric" + ) + tb_dalys = tb_dalys.format(["country", "year", "measure", "age", "cause"], short_name="gbd_cause_dalys").drop( + columns="metric" + ) # # Save outputs.