From c4c4453f9a7097df2683cf29341cb2d9e1167da6 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 4 May 2023 16:52:16 -0500 Subject: [PATCH] Remove getcomptype from example --- README.rst | 1 - examples/wave_simpletest.py | 1 - 2 files changed, 2 deletions(-) diff --git a/README.rst b/README.rst index 5556675..f614389 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/examples/wave_simpletest.py b/examples/wave_simpletest.py index 20c1fac..9aa9971 100644 --- a/examples/wave_simpletest.py +++ b/examples/wave_simpletest.py @@ -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")))