Skip to content

Commit 3fe31cf

Browse files
committed
format code
1 parent d56abff commit 3fe31cf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

doc/python/axes.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -734,12 +734,11 @@ To use a reversed axis while specifying only an upper or lower bound for the ran
734734

735735
```python
736736
import plotly.express as px
737+
737738
df = px.data.iris()
738739

739740
fig = px.scatter(df, x="sepal_width", y="sepal_length", facet_col="species")
740-
fig.update_yaxes(range=[9, None],
741-
autorange="reversed"
742-
)
741+
fig.update_yaxes(range=[9, None], autorange="reversed")
743742

744743
fig.show()
745744
```

0 commit comments

Comments
 (0)