Commit 81c8717d authored by Self Denial's avatar Self Denial
Browse files

Format fix

parent 429242b4
......@@ -83,7 +83,9 @@ def transcribe(
try:
model = WhisperModel(**whisper_kwargs)
except:
log.debug("WhisperModel initialization failed, attempting download with local_files_only=False")
log.debug(
"WhisperModel initialization failed, attempting download with local_files_only=False"
)
whisper_kwargs["local_files_only"] = False
model = WhisperModel(**whisper_kwargs)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment