8000 fix exeeded line while linting test · matplotlib/matplotlib@2ae3dd9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2ae3dd9

Browse files
committed
fix exeeded line while linting test
1 parent cd25cea commit 2ae3dd9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/images_contours_and_fields/plot_streamplot.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
# Controlling the starting points of the streamlines
4444
seed_points = np.array([[-2, -1, 0, 1, 2, -1], [-2, -1, 0, 1, 2, 2]])
4545

46-
strm = axs[1, 1].streamplot(X, Y, U, V, color=U, linewidth=2, cmap='autumn', start_points=seed_points.T)
46+
strm = axs[1, 1].streamplot(X, Y, U, V, color=U, linewidth=2,
47+
cmap='autumn', start_points=seed_points.T)
4748
fig.colorbar(strm.lines, ax=axs[1, 1])
4849
axs[1, 1].set_title('Controlling Starting Points')
4950

0 commit comments

Comments
 (0)
0