Fix quality option bug

This commit is contained in:
Nathan Thomas 2023-12-21 13:17:06 -08:00
parent 1522931f6f
commit 881fb6cba1
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@ def coro(f):
default=False,
is_flag=True,
)
@click.option("-q", "--quality", help="The maximum quality allowed to download")
@click.option(
"-q", "--quality", help="The maximum quality allowed to download", type=int
)
@click.option(
"-c",
"--convert",