Skip to content

Commit

Permalink
fix python lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Yosshi999 committed Nov 9, 2024
1 parent 101b3e7 commit 8a44a37
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion example/python/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ def main() -> None:
pcm = b""
for i in range(0, intermediate.frame_length, chunk_frames):
logger.info("%s", f"{i/intermediate.frame_length:.2%}")
pcm += synthesizer.render(intermediate, i, min(i + chunk_frames, intermediate.frame_length))
pcm += synthesizer.render(
intermediate, i, min(i + chunk_frames, intermediate.frame_length)
)
logger.info("%s", f"100%")
wav = wav_from_s16le(
pcm, audio_query.output_sampling_rate, audio_query.output_stereo
Expand Down

0 comments on commit 8a44a37

Please sign in to comment.