From cdce2ee6ac3a129dadc190eab57bfa021a253fee Mon Sep 17 00:00:00 2001 From: ilu_vatar_ Date: Sat, 25 Dec 2021 20:24:37 +0100 Subject: [PATCH] small python code refactoring Just added a space after the equal '=' symbol. --- doc/python/interactive-html-export.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python/interactive-html-export.md b/doc/python/interactive-html-export.md index 360e93db91f..16437d7d966 100644 --- a/doc/python/interactive-html-export.md +++ b/doc/python/interactive-html-export.md @@ -46,7 +46,7 @@ Any figure can be saved as an HTML file using the `write_html` method. These HTM ```python import plotly.express as px -fig =px.scatter(x=range(10), y=range(10)) +fig = px.scatter(x=range(10), y=range(10)) fig.write_html("path/to/file.html") ```