Fix -q arg

This commit is contained in:
vitiko98 2020-12-09 15:03:45 -04:00
parent 621c609721
commit 78d9275579
2 changed files with 1 additions and 5 deletions

View File

@ -38,15 +38,11 @@ def qobuz_dl_args(
"--quality", "--quality",
metavar="int", metavar="int",
default=default_quality, default=default_quality,
choices=[5, 6, 7, 27],
help=( help=(
'audio "quality" (5, 6, 7, 27)\n' 'audio "quality" (5, 6, 7, 27)\n'
"[320, LOSSLESS, 24B <96KHZ, 24B >96KHZ] (default: 6)" "[320, LOSSLESS, 24B <96KHZ, 24B >96KHZ] (default: 6)"
), ),
) )
custom_parser.add_argument(
"-z", "--zip", action="store_true", help="zip the downloaded item(s)"
)
interactive = subparsers.add_parser( interactive = subparsers.add_parser(
"fun", "fun",

View File

@ -15,7 +15,7 @@ if os.name == "nt":
setup( setup(
name=pkg_name, name=pkg_name,
version="0.5", version="0.5.1",
author="Vitiko", author="Vitiko",
author_email="vhnz98@gmail.com", author_email="vhnz98@gmail.com",
description="The complete Lossless and Hi-Res music downloader for Qobuz", description="The complete Lossless and Hi-Res music downloader for Qobuz",