Skip to content

Commit

Permalink
Change is_soundfile_availble to is_soundfile_available (#35030)
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-blanchon authored Jan 3, 2025
1 parent 4286586 commit cba49cb
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions src/transformers/agents/agent_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import numpy as np

from ..utils import is_soundfile_availble, is_torch_available, is_vision_available, logging
from ..utils import is_soundfile_available, is_torch_available, is_vision_available, logging


logger = logging.get_logger(__name__)
Expand All @@ -36,7 +36,7 @@
else:
Tensor = object

if is_soundfile_availble():
if is_soundfile_available():
import soundfile as sf


Expand Down Expand Up @@ -179,7 +179,7 @@ class AgentAudio(AgentType, str):
def __init__(self, value, samplerate=16_000):
super().__init__(value)

if not is_soundfile_availble():
if not is_soundfile_available():
raise ImportError("soundfile must be installed in order to handle audio.")

self._path = None
Expand Down
2 changes: 1 addition & 1 deletion src/transformers/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
is_sentencepiece_available,
is_seqio_available,
is_sklearn_available,
is_soundfile_availble,
is_soundfile_available,
is_spacy_available,
is_speech_available,
is_tensor,
Expand Down
4 changes: 2 additions & 2 deletions src/transformers/testing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
is_scipy_available,
is_sentencepiece_available,
is_seqio_available,
is_soundfile_availble,
is_soundfile_available,
is_spacy_available,
is_sudachi_available,
is_sudachi_projection_available,
Expand Down Expand Up @@ -1122,7 +1122,7 @@ def require_soundfile(test_case):
These tests are skipped when soundfile isn't installed.
"""
return unittest.skipUnless(is_soundfile_availble(), "test requires soundfile")(test_case)
return unittest.skipUnless(is_soundfile_available(), "test requires soundfile")(test_case)


def require_deepspeed(test_case):
Expand Down
2 changes: 1 addition & 1 deletion src/transformers/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
is_sentencepiece_available,
is_seqio_available,
is_sklearn_available,
is_soundfile_availble,
is_soundfile_available,
is_spacy_available,
is_speech_available,
is_sudachi_available,
Expand Down
2 changes: 1 addition & 1 deletion src/transformers/utils/import_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ def is_training_run_on_sagemaker():
return "SAGEMAKER_JOB_NAME" in os.environ


def is_soundfile_availble():
def is_soundfile_available():
return _soundfile_available


Expand Down
4 changes: 2 additions & 2 deletions tests/agents/test_agent_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@

from transformers.agents.agent_types import AgentAudio, AgentImage, AgentText
from transformers.testing_utils import get_tests_dir, require_soundfile, require_torch, require_vision
from transformers.utils import is_soundfile_availble, is_torch_available, is_vision_available
from transformers.utils import is_soundfile_available, is_torch_available, is_vision_available


if is_torch_available():
import torch

if is_soundfile_availble():
if is_soundfile_available():
import soundfile as sf

if is_vision_available():
Expand Down

0 comments on commit cba49cb

Please sign in to comment.