Use nargs for -d parameter

This commit is contained in:
DraftKinner 2025-02-25 12:17:34 -05:00
parent 82dc7471ac
commit eed421041f
2 changed files with 2 additions and 1 deletions

View file

@ -71,6 +71,7 @@ def main():
"-d",
"--download",
type=str,
nargs="*",
help="Downloads tracks, playlists and albums from the URLs written in the file passed.",
)
group.add_argument(

View file

@ -211,7 +211,7 @@ class App:
return selection.get("episodes")
elif args.download:
ids = []
for x in args.download.split(", "):
for x in args.download:
ids.extend(selection.from_file(x.strip()))
return ids
elif args.urls: