From 9f628da12a72d7bd9fe9966c8e335abe278d34ef Mon Sep 17 00:00:00 2001 From: Kelechi Nwachukwu Date: Sun, 26 Nov 2023 21:31:57 -0500 Subject: [PATCH] chore: Remove unused var --- ffmpeg-split.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg-split.py b/ffmpeg-split.py index 32fd250..b704cd6 100644 --- a/ffmpeg-split.py +++ b/ffmpeg-split.py @@ -275,7 +275,7 @@ def main(): action="store", ) - options, args = parser.parse_args() + options, _ = parser.parse_args() def bailout(): parser.print_help()