Skip to content

Commit 4f5d23d

Browse files
authored
Merge pull request #36 from andreww/patch-2
Fix rounding solution
2 parents e6a4dfe + 8834b66 commit 4f5d23d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/04-data-types-and-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ pandas._libs.tslibs.timedeltas.Timedelta
405405
> > ## Solution
406406
> > ~~~
407407
> > rounded_heights = waves_df["Wave Height"].apply(round)
408-
> > waves_df["Wave Height"].apply(round, args=(1,))
408+
> > waves_df["Wave Height"].apply(round, args=(2,))
409409
> > ~~~
410410
> > {: .language-python}
411411
> {: .solution}

0 commit comments

Comments
 (0)