diff --git a/_episodes/04-data-types-and-format.md b/_episodes/04-data-types-and-format.md index 5aa587912..653f4b934 100644 --- a/_episodes/04-data-types-and-format.md +++ b/_episodes/04-data-types-and-format.md @@ -405,7 +405,7 @@ pandas._libs.tslibs.timedeltas.Timedelta > > ## Solution > > ~~~ > > rounded_heights = waves_df["Wave Height"].apply(round) -> > waves_df["Wave Height"].apply(round, args=(1,)) +> > waves_df["Wave Height"].apply(round, args=(2,)) > > ~~~ > > {: .language-python} > {: .solution}