Remove getcomptype from example

This commit is contained in:
Jeff Epler 2023-05-04 16:52:16 -05:00
parent 8eb0f944bf
commit c4c4453f9a
No known key found for this signature in database
GPG key ID: D5BF15AB975AB4DE
2 changed files with 0 additions and 2 deletions

View file

@ -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

View file

@ -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")))