Skip to content

Commit 4c20aa8

Browse files
committed
anti-pep8 fixes ^_^
1 parent ab4c9ea commit 4c20aa8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/pylab_examples/image_origin.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
x.shape = (10, 10)
1212

1313
interp = 'bilinear'
14-
# interp = 'nearest'
14+
#interp = 'nearest'
1515
lim = -2, 11, -2, 6
1616
plt.subplot(211, axisbg='g')
1717
plt.title('blue should be up')
1818
plt.imshow(x, origin='upper', interpolation=interp, cmap='jet')
19-
# plt.axis(lim)
19+
#plt.axis(lim)
2020

2121
plt.subplot(212, axisbg='y')
2222
plt.title('blue should be down')
2323
plt.imshow(x, origin='lower', interpolation=interp, cmap='jet')
24-
# plt.axis(lim)
24+
#plt.axis(lim)
2525
plt.show()

0 commit comments

Comments
 (0)