Skip to content

Commit 912954d

Browse files
authored
correct confusing indentation level (#2065)
1 parent e126be8 commit 912954d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: doc/python/3d-axes.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,13 @@ fig = go.Figure(data=[go.Mesh3d(x=(70*np.random.randn(N)),
5555
color='rgba(244,22,100,0.6)'
5656
)])
5757

58-
fig.update_layout(scene = dict(
58+
fig.update_layout(
59+
scene = dict(
5960
xaxis = dict(nticks=4, range=[-100,100],),
6061
yaxis = dict(nticks=4, range=[-50,100],),
6162
zaxis = dict(nticks=4, range=[-100,100],),),
62-
width=700,
63-
margin=dict(r=20, l=10, b=10, t=10))
63+
width=700,
64+
margin=dict(r=20, l=10, b=10, t=10))
6465

6566
fig.show()
6667
```

0 commit comments

Comments
 (0)