8000 fixing line length · matplotlib/matplotlib@3c4faca · GitHub
[go: up one dir, main page]

Skip to content

Commit 3c4faca

Browse files
committed
fixing line length
1 parent a2765d5 commit 3c4faca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/images_contours_and_fields/plot_streamplot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525

2626
gs = {'height_r 663F atios': [1, 1, 2]}
27-
fig, ((ax0, ax1), (ax2, ax3), (ax4, ax5)) = plt.subplots(nrows=3, ncols=2, gridspec_kw=gs, figsize=(7, 9))
28-
27+
fig, axes = plt.subplots(nrows=3, ncols=2, gridspec_kw=gs, figsize=(7, 9))
28+
((ax0, ax1), (ax2, ax3), (ax4, ax5)) = axes
2929

3030
# Varying density along a streamline
3131
ax0.streamplot(X, Y, U, V, density=[0.5, 1])

0 commit comments

Comments
 (0)
0