From a3762369d1f7c6b9adfdd9e09c9e7dc1782b7e60 Mon Sep 17 00:00:00 2001 From: lee Date: Thu, 8 Apr 2021 16:24:02 +0100 Subject: [PATCH] return function not needed --- one_md_per_day_format/piscine/Week1/day2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/one_md_per_day_format/piscine/Week1/day2.md b/one_md_per_day_format/piscine/Week1/day2.md index 66c9233..3ac61e9 100644 --- a/one_md_per_day_format/piscine/Week1/day2.md +++ b/one_md_per_day_format/piscine/Week1/day2.md @@ -90,7 +90,7 @@ The data set used is **Individual household electric power consumption** 3. Create a function that takes as input the DataFrame with the data set and returns a DataFrame with updated types: ```python - def update_types(df) -> DataFrame: + def update_types(df): #TODO return df ```