refactor: update import statements to use explicit module paths across multiple files

This commit is contained in:
Barabazs
2025-03-25 16:13:55 +01:00
parent 8e53866704
commit e7712f496e
10 changed files with 29 additions and 28 deletions

View File

@ -13,9 +13,9 @@ import torch
import torchaudio
from transformers import Wav2Vec2ForCTC, Wav2Vec2Processor
from .audio import SAMPLE_RATE, load_audio
from .utils import interpolate_nans
from .types import (
from whisperx.audio import SAMPLE_RATE, load_audio
from whisperx.utils import interpolate_nans
from whisperx.types import (
AlignedTranscriptionResult,
SingleSegment,
SingleAlignedSegment,