From 7e861a03d5e81658762bf2cc9b8fefde2933390c Mon Sep 17 00:00:00 2001 From: David vonThenen <12752197+dvonthenen@users.noreply.github.com> Date: Tue, 12 Dec 2023 14:59:18 -0800 Subject: [PATCH] restore the chain --- deepgram/__init__.py | 4 ++-- deepgram/audio/__init__.py | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 deepgram/audio/__init__.py diff --git a/deepgram/__init__.py b/deepgram/__init__.py index 138bbf35..6a4d22c3 100644 --- a/deepgram/__init__.py +++ b/deepgram/__init__.py @@ -43,8 +43,8 @@ ) # utilities -from .audio.microphone import Microphone -from .audio.microphone import ( +from .audio import Microphone +from .audio import ( LOGGING, CHANNELS, RATE, diff --git a/deepgram/audio/__init__.py b/deepgram/audio/__init__.py new file mode 100644 index 00000000..d61ccafb --- /dev/null +++ b/deepgram/audio/__init__.py @@ -0,0 +1,6 @@ +# Copyright 2023 Deepgram SDK contributors. All Rights Reserved. +# Use of this source code is governed by a MIT license that can be found in the LICENSE file. +# SPDX-License-Identifier: MIT + +from .microphone import Microphone +from .microphone import LOGGING, CHANNELS, RATE, CHUNK