Skip to content

Commit 86e9d20

Browse files
committed
Fix linters
1 parent fba3d54 commit 86e9d20

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

torchaudio/speech.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ def replace(obj, **kwargs):
1010
from typing import Callable, NamedTuple, Self
1111

1212
import sounddevice as sd
13-
import torchaudio
1413
from IPython.display import Audio
1514
from torch import Tensor, clamp, randn_like
1615
from torch.nn import functional as F
1716
from torch.utils.data import Dataset
17+
from tqdm import tqdm
18+
19+
import torchaudio
1820
from torchaudio import functional as AF
1921
from torchaudio.datasets import SPEECHCOMMANDS
2022
from torchaudio.datasets.speechcommands import FOLDER_IN_ARCHIVE
21-
from tqdm import tqdm
2223

2324

2425
class SpeechSample(NamedTuple):

0 commit comments

Comments
 (0)