Skip to content

Commit

Permalink
bugfix: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ftnext committed Nov 3, 2024
1 parent 2428c80 commit a24dd0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_whisper_recognition.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import sys
from unittest import TestCase, skipif
from unittest import TestCase, skipIf
from unittest.mock import MagicMock, patch

import numpy as np

from speech_recognition import AudioData, Recognizer


@skipif(sys.version_info >= (3, 13), "skip on Python 3.13")
@skipIf(sys.version_info >= (3, 13), "skip on Python 3.13")
@patch("speech_recognition.io.BytesIO")
@patch("soundfile.read")
@patch("torch.cuda.is_available")
Expand Down

0 comments on commit a24dd0d

Please sign in to comment.