From 20dd716c7f83921abc6140f925fd55907ed07cba Mon Sep 17 00:00:00 2001 From: lucasmbrown-usds Date: Wed, 7 Sep 2022 13:50:08 -0400 Subject: [PATCH] fixing missing states --- .../data_pipeline/etl/sources/cdc_life_expectancy/etl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/data-pipeline/data_pipeline/etl/sources/cdc_life_expectancy/etl.py b/data/data-pipeline/data_pipeline/etl/sources/cdc_life_expectancy/etl.py index 981e40d9..3a01c29a 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/cdc_life_expectancy/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/cdc_life_expectancy/etl.py @@ -158,3 +158,5 @@ class CDCLifeExpectancy(ExtractTransformLoad): self.output_df[self.COLUMNS_TO_KEEP].to_csv( path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False ) + + logger.info(self.OUTPUT_PATH / "usa.csv")