Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4951d9b

Browse files
author
Jakub Klus
committed
Don't use "unchanged" use "default"
1 parent 9dbdc73 commit 4951d9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/intermediate/autoscale.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@
7878
fig, ax = plt.subplots(ncols=3, figsize=(16, 10))
7979
ax[0].imshow(zz)
8080
ax[0].margins(0.2)
81-
ax[0].set_title("use_sticky_edges unchanged\nmargins(0.2)")
81+
ax[0].set_title("default use_sticky_edges\nmargins(0.2)")
8282
ax[1].imshow(zz)
8383
ax[1].margins(0.2)
8484
ax[1].use_sticky_edges = False
8585
ax[1].set_title("use_sticky_edges=False\nmargins(0.2)")
8686
ax[2].imshow(zz)
8787
ax[2].margins(-0.2)
88-
ax[2].set_title("use_sticky_edges unchanged\nmargins(-0.2)")
88+
ax[2].set_title("default use_sticky_edges\nmargins(-0.2)")
8989

9090
###############################################################################
9191
# We can see that setting ``use_sticky_edges`` to *False* renders the image with

0 commit comments

Comments
 (0)