Skip to content

Commit e1ba73e

Browse files
Update Copyright Year
1 parent e13368b commit e1ba73e

File tree

77 files changed

+109
-78
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+109
-78
lines changed

deepgram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/audio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/audio/microphone/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/audio/microphone/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/audio/microphone/errors.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

5+
56
# exceptions for microphone
67
class DeepgramMicrophoneError(Exception):
78
"""
@@ -10,6 +11,7 @@ class DeepgramMicrophoneError(Exception):
1011
Attributes:
1112
message (str): The error message describing the exception.
1213
"""
14+
1315
def __init__(self, message: str):
1416
super().__init__(message)
1517
self.name = "DeepgramMicrophoneError"

deepgram/audio/microphone/microphone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/abstract_async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/abstract_sync_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/analyze/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/analyze/v1/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/errors.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

@@ -10,6 +10,7 @@ class DeepgramError(Exception):
1010
Attributes:
1111
message (str): The error message describing the exception.
1212
"""
13+
1314
def __init__(self, message: str):
1415
super().__init__(message)
1516
self.name = "DeepgramError"
@@ -26,6 +27,7 @@ class DeepgramModuleError(Exception):
2627
Attributes:
2728
message (str): The error message describing the exception.
2829
"""
30+
2931
def __init__(self, message: str):
3032
super().__init__(message)
3133
self.name = "DeepgramModuleError"
@@ -40,6 +42,7 @@ class DeepgramApiError(Exception):
4042
status (str): The HTTP status associated with the API error.
4143
original_error (str - json): The original error that was raised.
4244
"""
45+
4346
def __init__(self, message: str, status: str, original_error=None):
4447
super().__init__(message)
4548
self.name = "DeepgramApiError"
@@ -59,6 +62,7 @@ class DeepgramUnknownApiError(Exception):
5962
message (str): The error message describing the exception.
6063
status (str): The HTTP status associated with the API error.
6164
"""
65+
6266
def __init__(self, message: str, status: str):
6367
super().__init__(message, status)
6468
self.name = "DeepgramUnknownApiError"

deepgram/clients/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/listen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/live/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/live/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/live/enums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/live/errors.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

@@ -10,6 +10,7 @@ class DeepgramError(Exception):
1010
Attributes:
1111
message (str): The error message describing the exception.
1212
"""
13+
1314
def __init__(self, message: str):
1415
super().__init__(message)
1516
self.name = "DeepgramError"

deepgram/clients/live/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/live/v1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/live/v1/response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/manage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/manage/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/manage/v1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/manage/v1/async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/manage/v1/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/manage/v1/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/manage/v1/response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/onprem/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/onprem/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

@@ -15,6 +15,7 @@ class OnPremClient(OnPremClientLatest):
1515
"""
1616
Please see OnPremClientLatest for details
1717
"""
18+
1819
def __init__(self, config):
1920
super().__init__(config)
2021

@@ -23,5 +24,6 @@ class AsyncOnPremClient(AsyncOnPremClientLatest):
2324
"""
2425
Please see AsyncOnPremClientLatest for details
2526
"""
27+
2628
def __init__(self, config):
2729
super().__init__(config)

deepgram/clients/onprem/v1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/onprem/v1/async_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

@@ -16,6 +16,7 @@ class AsyncOnPremClient(AbstractAsyncRestClient):
1616
Args:
1717
config (DeepgramClientOptions): all the options for the client.
1818
"""
19+
1920
def __init__(self, config):
2021
self.logger = logging.getLogger(__name__)
2122
self.logger.addHandler(logging.StreamHandler())

deepgram/clients/onprem/v1/client.py

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

@@ -17,6 +17,7 @@ class OnPremClient(AbstractSyncRestClient):
1717
Args:
1818
config (DeepgramClientOptions): all the options for the client.
1919
"""
20+
2021
def __init__(self, config):
2122
self.logger = logging.getLogger(__name__)
2223
self.logger.addHandler(logging.StreamHandler())
@@ -36,7 +37,12 @@ def list_onprem_credentials(self, project_id: str, timeout: httpx.Timeout = None
3637
self.logger.debug("OnPremClient.list_onprem_credentials LEAVE")
3738
return res
3839

39-
def get_onprem_credentials(self, project_id: str, distribution_credentials_id: str, timeout: httpx.Timeout = None):
40+
def get_onprem_credentials(
41+
self,
42+
project_id: str,
43+
distribution_credentials_id: str,
44+
timeout: httpx.Timeout = None,
45+
):
4046
self.logger.debug("OnPremClient.get_onprem_credentials ENTER")
4147
url = f"{self.config.url}/{self.endpoint}/{project_id}/onprem/distribution/credentials/{distribution_credentials_id}"
4248
self.logger.info("url: %s", url)
@@ -48,7 +54,9 @@ def get_onprem_credentials(self, project_id: str, distribution_credentials_id: s
4854
self.logger.debug("OnPremClient.get_onprem_credentials LEAVE")
4955
return res
5056

51-
def create_onprem_credentials(self, project_id: str, options, timeout: httpx.Timeout = None):
57+
def create_onprem_credentials(
58+
self, project_id: str, options, timeout: httpx.Timeout = None
59+
):
5260
self.logger.debug("OnPremClient.create_onprem_credentials ENTER")
5361
url = f"{self.config.url}/{self.endpoint}/{project_id}/onprem/distribution/credentials/"
5462
self.logger.info("url: %s", url)
@@ -61,7 +69,10 @@ def create_onprem_credentials(self, project_id: str, options, timeout: httpx.Tim
6169
return res
6270

6371
def delete_onprem_credentials(
64-
self, project_id: str, distribution_credentials_id: str, timeout: httpx.Timeout = None
72+
self,
73+
project_id: str,
74+
distribution_credentials_id: str,
75+
timeout: httpx.Timeout = None,
6576
):
6677
self.logger.debug("OnPremClient.delete_onprem_credentials ENTER")
6778
url = f"{self.config.url}/{self.endpoint}/{project_id}/onprem/distribution/credentials/{distribution_credentials_id}"

deepgram/clients/prerecorded/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/prerecorded/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/prerecorded/v1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/prerecorded/v1/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/clients/prerecorded/v1/response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

deepgram/errors.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

@@ -10,6 +10,7 @@ class DeepgramApiKeyError(Exception):
1010
Attributes:
1111
message (str): The error message describing the exception.
1212
"""
13+
1314
def __init__(self, message: str):
1415
super().__init__(message)
1516
self.name = "DeepgramApiKeyError"
@@ -22,6 +23,7 @@ class DeepgramModuleError(Exception):
2223
Attributes:
2324
message (str): The error message describing the exception.
2425
"""
26+
2527
def __init__(self, message: str):
2628
super().__init__(message)
2729
self.name = "DeepgramModuleError"

deepgram/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

examples/advanced/prerecorded/direct-invocation/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

examples/advanced/streaming/direct-invocation/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

examples/advanced/streaming/microphone-inheritance/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
1+
# Copyright 2023-2024 Deepgram SDK contributors. All Rights Reserved.
22
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
33
# SPDX-License-Identifier: MIT
44

0 commit comments

Comments
 (0)