Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5aa3a commit cbc37fbCopy full SHA for cbc37fb
1 file changed
lib/matplotlib/tests/test_quiver.py
@@ -64,7 +64,7 @@ def test_zero_headlength():
64
# Based on report by Doug McNeil:
65
# http://matplotlib.1069221.n5.nabble.com/quiver-warnings-td28107.html
66
fig, ax = plt.subplots()
67
- X,Y = np.meshgrid(np.arange(10),np.arange(10))
+ X, Y = np.meshgrid(np.arange(10), np.arange(10))
68
U, V = np.cos(X), np.sin(Y)
69
with warnings.catch_warnings(record=True) as w:
70
ax.quiver(U, V, headlength=0, headaxislength=0)
0 commit comments