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

Skip to content

Commit 626655a

Browse files
committed
pep8 changes
1 parent 5df58fa commit 626655a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/pylab_examples/arctest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import matplotlib.pyplot as plt
22
import numpy as np
33

4+
45
def f(t):
56
'a damped exponential'
6-
s1 = np.cos(2*np.pi*t)
7+
s1 = np.cos(2 * np.pi * t)
78
e1 = np.exp(-t)
89
return s1 * e1
910

0 commit comments

Comments
 (0)