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

Skip to content

Commit db6a82a

Browse files
committed
Merge pull request #6475 from cgohlke/patch-1
Do not turn on interactive mode on in example script
1 parent 19c38d5 commit db6a82a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/images_contours_and_fields/streamplot_demo_start_points.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"""
1111
import numpy as np
1212
import matplotlib.pyplot as plt
13-
plt.ion()
1413

1514
X, Y = (np.linspace(-3, 3, 100),
1615
np.linspace(-3, 3, 100))
@@ -27,3 +26,5 @@
2726
ax0.plot(seed_points[0], seed_points[1], 'bo')
2827

2928
ax0.axis((-3, 3, -3, 3))
29+
30+
plt.show()

0 commit comments

Comments
 (0)