Skip to content

Commit 6ac3e36

Browse files
committed
typoe
1 parent 135b01b commit 6ac3e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: doc/python/imshow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ img_sequence = [filters.gaussian(img, sigma=sigma) for sigma in sigmas]
432432
fig = px.imshow(np.array(img_sequence), facet_col=0, binary_string=True,
433433
labels={'facet_col':'sigma'})
434434
# Set facet titles
435-
for sigma in sigmas:
435+
for i, sigma in enumerate(sigmas):
436436
fig.layout.annotations[i]['text'] = 'sigma = %d' %sigma
437437
fig.show()
438438
```

0 commit comments

Comments
 (0)