From ca1fc7db98a5b08cab9536de16eaefb748309803 Mon Sep 17 00:00:00 2001 From: David-OC17 Date: Wed, 4 Dec 2024 09:47:46 -0600 Subject: [PATCH] Added line #type: ignore to pass mypy check --- sonar/inference_pipelines/mutox_speech.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar/inference_pipelines/mutox_speech.py b/sonar/inference_pipelines/mutox_speech.py index d2f9e4f..1b10d9f 100644 --- a/sonar/inference_pipelines/mutox_speech.py +++ b/sonar/inference_pipelines/mutox_speech.py @@ -37,7 +37,7 @@ def __init__( if isinstance(encoder, str): self.model = self.load_model_from_name( "sonar_mutox", encoder, device=device - ) + ) # type: ignore else: self.model = encoder