Skip to content

Commit 5381ec2

Browse files
committed
Image
1 parent eae093b commit 5381ec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1982,7 +1982,7 @@ def write_to_wav_file(filename, frames_int):
19821982
```python
19831983
from math import pi, sin
19841984
sin_f = lambda i: sin(i * 2 * pi * 440 / 44100)
1985-
frames_f = (sin_f(a) for a in range(100000))
1985+
frames_f = (sin_f(i) for i in range(100000))
19861986
frames_i = (int(a * 30000) for a in frames_f)
19871987
write_to_wav_file('test.wav', frames_i)
19881988
```

0 commit comments

Comments
 (0)