Skip to content

Commit 01adb32

Browse files
fixing kwarg error
1 parent 89e1943 commit 01adb32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/animations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ import plotly.express as px
4545

4646
gapminder = px.data.gapminder()
4747

48-
fig = px.bar(gapminder, x="continent", y="pop", color="continent",
49-
animation_frame="year", animation_group="country", y_range=[0,4000000000])
48+
fig = px.bar(gapminder, x="continent", y="pop", color="continent",
49+
animation_frame="year", animation_group="country", range_y=[0,4000000000])
5050
fig.show()
5151
```
5252

0 commit comments

Comments
 (0)