Skip to content

Commit c997b5d

Browse files
committed
Bump version
1 parent 65f8431 commit c997b5d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

manim_voiceover/services/elevenlabs.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,12 @@ def generate_from_text(
174174
audio_path = path
175175

176176
try:
177-
audio = generate(text=input_text, voice=self.voice, model=self.model, output_format=self.output_format)
177+
audio = generate(
178+
text=input_text,
179+
voice=self.voice,
180+
model=self.model,
181+
output_format=self.output_format,
182+
)
178183
save(audio, str(Path(cache_dir) / audio_path)) # type: ignore
179184
except Exception as e:
180185
logger.error(e)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "manim-voiceover"
3-
version = "0.3.6"
3+
version = "0.3.6.post"
44
description = "Manim plugin for all things voiceover"
55
authors = ["The Manim Community Developers <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)