Skip to content

Commit cbc37fb

Browse files
committed
Conform to pep8
1 parent 3e5aa3a commit cbc37fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_quiver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_zero_headlength():
6464
# Based on report by Doug McNeil:
6565
# http://matplotlib.1069221.n5.nabble.com/quiver-warnings-td28107.html
6666
fig, ax = plt.subplots()
67-
X,Y = np.meshgrid(np.arange(10),np.arange(10))
67+
X, Y = np.meshgrid(np.arange(10), np.arange(10))
6868
U, V = np.cos(X), np.sin(Y)
6969
with warnings.catch_warnings(record=True) as w:
7070
ax.quiver(U, V, headlength=0, headaxislength=0)

0 commit comments

Comments
 (0)