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

Skip to content

Commit 4e20961

Browse files
committed
pep8 fixes
1 parent ca65082 commit 4e20961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pylab_examples/quiver_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
Q = plt.quiver(X[::3, ::3], Y[::3, ::3], U[::3, ::3], V[::3, ::3],
4343
pivot='mid', color='r', units='inches')
4444
qk = plt.quiverkey(Q, 0.5, 0.03, 1, r'$1 \frac{m}{s}$',
45-
fontproperties={'weight': 'bold'})
45+
fontproperties={'weight': 'bold'})
4646
plt.plot(X[::3, ::3], Y[::3, ::3], 'k.')
4747
plt.axis([-1, 7, -1, 7])
4848
plt.title("pivot='mid'; every third arrow; units='inches'")

0 commit comments

Comments
 (0)