From 2541eb184b0c9c1e976a3ad4d3ac00ab41d4c8b0 Mon Sep 17 00:00:00 2001 From: OzVa Server Date: Sun, 19 May 2024 20:56:59 +0100 Subject: [PATCH] fixed final brace --- spaceweather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spaceweather.py b/spaceweather.py index ac05111..769dd98 100755 --- a/spaceweather.py +++ b/spaceweather.py @@ -221,7 +221,7 @@ padding = round((target - duration) / (len(order) - 4), 2) print(f"duration: {round(duration, 2)} padding: {padding}") # pipe reccursion to join all the audio clips together -call = f"sox {order[1]["file"]} -p pad 0 {padding}|" +call = f"sox {order[1]['file']} -p pad 0 {padding}|" for clip in order[2:-2]: call += f"sox - {clip['file']} -p pad 0 {padding}|" call += f"sox --effects-file=config/voice.effects - audio/voice.wav" -- 2.39.2