Skip to content

Commit

Permalink
minor tidy of google removing unused parts
Browse files Browse the repository at this point in the history
  • Loading branch information
willwade committed Sep 27, 2024
1 parent 726c53b commit 0f89603
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tts_wrapper/engines/google/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import List, Dict, Any, Tuple, Optional, Union
from typing import List, Dict, Any, Optional, Union
from ...exceptions import ModuleNotInstalled
import struct
from google.cloud import texttospeech_v1beta1 as texttospeech
Expand Down
3 changes: 1 addition & 2 deletions tts_wrapper/engines/google/google.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Any, List, Dict, Optional, Tuple, Generator
from ...exceptions import UnsupportedFileFormat
from ...tts import AbstractTTS, FileFormat
from ...tts import AbstractTTS
from .client import GoogleClient
from .ssml import GoogleSSML
from ...engines.utils import (
Expand All @@ -11,7 +11,6 @@
import threading
import queue
import sounddevice as sd
import time
from io import BytesIO
import re

Expand Down

0 comments on commit 0f89603

Please sign in to comment.