8000 split line 84 into two · matplotlib/matplotlib@c1692f3 · GitHub
[go: up one dir, main page]

Skip to content

Commit c1692f3

Browse files
committed
split line 84 into two
1 parent 156fa27 commit c1692f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/pylab_examples/quiver_demo.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@
8181
# 6
8282
plt.figure()
8383
M = np.zeros(U.shape, dtype='bool')
84-
M[U.shape[0]/3 : 2*U.shape[0]/3, U.shape[1]/3 : 2*U.shape[1]/3] = True
84+
M[U.shape[0]/3:2*U.shape[0]/3,
85+
U.shape[1]/3:2*U.shape[1]/3] = True
8586
U = ma.masked_array(U, mask=M)
8687
V = ma.masked_array(V, mask=M)
8788
Q = plt.quiver(U, V)

0 commit comments

Comments
 (0)
0