From 5fca8dffbf3c81554951e00d46a482ac9463c1e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?= <100566912+NohamR@users.noreply.github.com> Date: Sun, 11 Jan 2026 11:50:59 +0100 Subject: [PATCH] Lint --- main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.py b/main.py index c24d2c1..b64b3b4 100644 --- a/main.py +++ b/main.py @@ -298,11 +298,10 @@ if __name__ == "__main__": ) # Generate and save the manifest - generated_mpd_content = generate_mpd_manifest(manifest_info) manifest_output_path = args.manifest_output os.makedirs(os.path.dirname(manifest_output_path), exist_ok=True) with open(manifest_output_path, "w", encoding="utf-8") as f: - f.write(generated_mpd_content) + f.write(generate_mpd_manifest(manifest_info)) logger.info("Manifest saved to %s", manifest_output_path) sys.exit(0)