Skip to content

Commit e0fdb39

Browse files
authored
Remove duplicate import
1 parent 6ed555b commit e0fdb39

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Diff for: doc/python/3d-line-plots.md

-2
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,13 @@ jupyter:
3737

3838
```python
3939
import plotly.express as px
40-
import plotly.express as px
4140
df = px.data.gapminder().query("country=='Brazil'")
4241
fig = px.line_3d(df, x="gdpPercap", y="pop", z="year")
4342
fig.show()
4443
```
4544

4645
```python
4746
import plotly.express as px
48-
import plotly.express as px
4947
df = px.data.gapminder().query("continent=='Europe'")
5048
fig = px.line_3d(df, x="gdpPercap", y="pop", z="year", color='country')
5149
fig.show()

0 commit comments

Comments
 (0)