We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d89c625 commit 4fe6d22Copy full SHA for 4fe6d22
stable_whisper/audio/__init__.py
@@ -27,7 +27,7 @@ def get_denoiser_func(denoiser: Optional[str], key: str):
27
if denoiser is None:
28
return
29
if denoiser not in SUPPORTED_DENOISERS:
30
- raise NotImplementedError(f'"{denoiser}" is one of the supported denoisers: '
+ raise NotImplementedError(f'"{denoiser}" is not one of the supported denoisers: '
31
f'{tuple(SUPPORTED_DENOISERS.keys())}.')
32
assert key in ('run', 'load', 'access')
33
return SUPPORTED_DENOISERS[denoiser][key]
0 commit comments