8000 pep8 change to simple_plot.py · matplotlib/matplotlib@ccd1ffb · GitHub
[go: up one dir, main page]

Skip to content

Commit ccd1ffb

Browse files
committed
pep8 change to simple_plot.py
1 parent cb3efad commit ccd1ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pylab_examples/simple_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
t = np.arange(0.0, 2.0, 0.01)
55
s = np.sin(2*np.pi*t)
6-
np.plot(t, s)
6+
plt.plot(t, s)
77

88
plt.xlabel('time (s)')
99
plt.ylabel('voltage (mV)')

0 commit comments

Comments
 (0)
0