Skip to content

Commit

Permalink
Remove getcomptype from example
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed May 4, 2023
1 parent 8eb0f94 commit c4c4453
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion examples/wave_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@
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")))

0 comments on commit c4c4453

Please sign in to comment.