Skip to content

Commit c4c4453

Browse files
committed
Remove getcomptype from example
1 parent 8eb0f94 commit c4c4453

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Diff for: README.rst

-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ Usage Example
9595
with adafruit_wave.open("sample.wav") as w:
9696
print(w.getsampwidth())
9797
print(w.getnchannels())
98-
print(w.getcomptype())
9998
print(list(memoryview(w.readframes(100)).cast("h")))
10099
101100
Documentation

Diff for: examples/wave_simpletest.py

-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@
88
with adafruit_wave.open("sample.wav") as w:
99
print(w.getsampwidth())
1010
print(w.getnchannels())
11-
print(w.getcomptype())
1211
print(list(memoryview(w.readframes(100)).cast("h")))

0 commit comments

Comments
 (0)