Skip to content

Commit

Permalink
Merge pull request #335 from dvonthenen/update-copyright
Browse files Browse the repository at this point in the history
Update Copyright Year
  • Loading branch information
davidvonthenen authored Mar 7, 2024
2 parents e13368b + e1ba73e commit 7750a01
Show file tree
Hide file tree
Showing 77 changed files with 109 additions and 78 deletions.
2 changes: 1 addition & 1 deletion deepgram/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/audio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/audio/microphone/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/audio/microphone/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
4 changes: 3 additions & 1 deletion deepgram/audio/microphone/errors.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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


# exceptions for microphone
class DeepgramMicrophoneError(Exception):
"""
Expand All @@ -10,6 +11,7 @@ class DeepgramMicrophoneError(Exception):
Attributes:
message (str): The error message describing the exception.
"""

def __init__(self, message: str):
super().__init__(message)
self.name = "DeepgramMicrophoneError"
Expand Down
2 changes: 1 addition & 1 deletion deepgram/audio/microphone/microphone.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/abstract_async_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/abstract_sync_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/analyze/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/analyze/v1/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
6 changes: 5 additions & 1 deletion deepgram/clients/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand All @@ -10,6 +10,7 @@ class DeepgramError(Exception):
Attributes:
message (str): The error message describing the exception.
"""

def __init__(self, message: str):
super().__init__(message)
self.name = "DeepgramError"
Expand All @@ -26,6 +27,7 @@ class DeepgramModuleError(Exception):
Attributes:
message (str): The error message describing the exception.
"""

def __init__(self, message: str):
super().__init__(message)
self.name = "DeepgramModuleError"
Expand All @@ -40,6 +42,7 @@ class DeepgramApiError(Exception):
status (str): The HTTP status associated with the API error.
original_error (str - json): The original error that was raised.
"""

def __init__(self, message: str, status: str, original_error=None):
super().__init__(message)
self.name = "DeepgramApiError"
Expand All @@ -59,6 +62,7 @@ class DeepgramUnknownApiError(Exception):
message (str): The error message describing the exception.
status (str): The HTTP status associated with the API error.
"""

def __init__(self, message: str, status: str):
super().__init__(message, status)
self.name = "DeepgramUnknownApiError"
Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/listen.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/live/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/live/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/live/enums.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
3 changes: 2 additions & 1 deletion deepgram/clients/live/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand All @@ -10,6 +10,7 @@ class DeepgramError(Exception):
Attributes:
message (str): The error message describing the exception.
"""

def __init__(self, message: str):
super().__init__(message)
self.name = "DeepgramError"
Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/live/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/live/v1/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/live/v1/response.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/manage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/manage/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/manage/v1/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/manage/v1/async_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/manage/v1/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/manage/v1/options.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/manage/v1/response.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/onprem/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
4 changes: 3 additions & 1 deletion deepgram/clients/onprem/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand All @@ -15,6 +15,7 @@ class OnPremClient(OnPremClientLatest):
"""
Please see OnPremClientLatest for details
"""

def __init__(self, config):
super().__init__(config)

Expand All @@ -23,5 +24,6 @@ class AsyncOnPremClient(AsyncOnPremClientLatest):
"""
Please see AsyncOnPremClientLatest for details
"""

def __init__(self, config):
super().__init__(config)
2 changes: 1 addition & 1 deletion deepgram/clients/onprem/v1/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
3 changes: 2 additions & 1 deletion deepgram/clients/onprem/v1/async_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand All @@ -16,6 +16,7 @@ class AsyncOnPremClient(AbstractAsyncRestClient):
Args:
config (DeepgramClientOptions): all the options for the client.
"""

def __init__(self, config):
self.logger = logging.getLogger(__name__)
self.logger.addHandler(logging.StreamHandler())
Expand Down
19 changes: 15 additions & 4 deletions deepgram/clients/onprem/v1/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand All @@ -17,6 +17,7 @@ class OnPremClient(AbstractSyncRestClient):
Args:
config (DeepgramClientOptions): all the options for the client.
"""

def __init__(self, config):
self.logger = logging.getLogger(__name__)
self.logger.addHandler(logging.StreamHandler())
Expand All @@ -36,7 +37,12 @@ def list_onprem_credentials(self, project_id: str, timeout: httpx.Timeout = None
self.logger.debug("OnPremClient.list_onprem_credentials LEAVE")
return res

def get_onprem_credentials(self, project_id: str, distribution_credentials_id: str, timeout: httpx.Timeout = None):
def get_onprem_credentials(
self,
project_id: str,
distribution_credentials_id: str,
timeout: httpx.Timeout = None,
):
self.logger.debug("OnPremClient.get_onprem_credentials ENTER")
url = f"{self.config.url}/{self.endpoint}/{project_id}/onprem/distribution/credentials/{distribution_credentials_id}"
self.logger.info("url: %s", url)
Expand All @@ -48,7 +54,9 @@ def get_onprem_credentials(self, project_id: str, distribution_credentials_id: s
self.logger.debug("OnPremClient.get_onprem_credentials LEAVE")
return res

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

def delete_onprem_credentials(
self, project_id: str, distribution_credentials_id: str, timeout: httpx.Timeout = None
self,
project_id: str,
distribution_credentials_id: str,
timeout: httpx.Timeout = None,
):
self.logger.debug("OnPremClient.delete_onprem_credentials ENTER")
url = f"{self.config.url}/{self.endpoint}/{project_id}/onprem/distribution/credentials/{distribution_credentials_id}"
Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/prerecorded/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/prerecorded/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/prerecorded/v1/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/prerecorded/v1/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion deepgram/clients/prerecorded/v1/response.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
4 changes: 3 additions & 1 deletion deepgram/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand All @@ -10,6 +10,7 @@ class DeepgramApiKeyError(Exception):
Attributes:
message (str): The error message describing the exception.
"""

def __init__(self, message: str):
super().__init__(message)
self.name = "DeepgramApiKeyError"
Expand All @@ -22,6 +23,7 @@ class DeepgramModuleError(Exception):
Attributes:
message (str): The error message describing the exception.
"""

def __init__(self, message: str):
super().__init__(message)
self.name = "DeepgramModuleError"
2 changes: 1 addition & 1 deletion deepgram/options.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion examples/advanced/prerecorded/direct-invocation/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion examples/advanced/streaming/direct-invocation/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
2 changes: 1 addition & 1 deletion examples/advanced/streaming/microphone-inheritance/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Copyright 2023-2024 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

Expand Down
Loading

0 comments on commit 7750a01

Please sign in to comment.