feat(cli): remove unknown as possible quality

This commit is contained in:
Benex254
2024-08-15 10:50:32 +03:00
parent 4faac017b5
commit e1f73334ef

View File

@@ -76,7 +76,14 @@ signal.signal(signal.SIGINT, handle_exit)
@click.option(
"-q",
"--quality",
type=click.Choice(["360", "480", "720", "1080", "unknown"]),
type=click.Choice(
[
"360",
"480",
"720",
"1080",
]
),
help="set the quality of the stream",
)
@click.option(