Remove getcomptype from example
This commit is contained in:
parent
8eb0f944bf
commit
c4c4453f9a
2 changed files with 0 additions and 2 deletions
|
|
@ -95,7 +95,6 @@ Usage Example
|
|||
with adafruit_wave.open("sample.wav") as w:
|
||||
print(w.getsampwidth())
|
||||
print(w.getnchannels())
|
||||
print(w.getcomptype())
|
||||
print(list(memoryview(w.readframes(100)).cast("h")))
|
||||
|
||||
Documentation
|
||||
|
|
|
|||
|
|
@ -8,5 +8,4 @@ import adafruit_wave
|
|||
with adafruit_wave.open("sample.wav") as w:
|
||||
print(w.getsampwidth())
|
||||
print(w.getnchannels())
|
||||
print(w.getcomptype())
|
||||
print(list(memoryview(w.readframes(100)).cast("h")))
|
||||
|
|
|
|||
Loading…
Reference in a new issue