8000 PEP8 modifications · matplotlib/matplotlib@c9df0bc · GitHub
[go: up one dir, main page]

Skip to content

Commit c9df0bc

Browse files
committed
PEP8 modifications
1 parent 1fa8047 commit c9df0bc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/pylab_examples/text_handles.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import matplotlib.pyplot as plt
99
import numpy as np
1010

11+
1112
def f(t):
1213
s1 = np.sin(2*np.pi*t)
1314
e1 = np.exp(-t)
@@ -16,7 +17,6 @@ def f(t):
1617
t1 = np.arange(0.0, 5.0, 0.1)
1718
t2 = np.arange(0.0, 5.0, 0.02)
1819

19-
2020
fig, ax = plt.subplots()
2121
plt.plot(t1, f(t1), 'bo', t2, f(t2), 'k')
2222
plt.text(3.0, 0.6, 'f(t) = exp(-t) sin(2 pi t)')
@@ -30,4 +30,3 @@ def f(t):
3030
plt.setp(ytext, size='medium', name=['Helvetica', 'Bitstream Vera Sans'],
3131
weight='light', color='b')
3232
plt.show()
33-

0 commit comments

Comments
 (0)
0