Skip to content

Commit cf62c51

Browse files
authored
Merge pull request #3531 from Nicolas-Reyland/patch-1
small python code refactoring
2 parents 13d1d3f + 5a28580 commit cf62c51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: doc/python/interactive-html-export.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Any figure can be saved as an HTML file using the `write_html` method. These HTM
4646
```python
4747
import plotly.express as px
4848

49-
fig =px.scatter(x=range(10), y=range(10))
49+
fig = px.scatter(x=range(10), y=range(10))
5050
fig.write_html("path/to/file.html")
5151
```
5252
<!-- #endregion -->

0 commit comments

Comments
 (0)