FIX issue 462, nargs error (#547)

This commit is contained in:
Han 2023-12-06 06:08:20 +08:00 committed by GitHub
parent 1adb4f1702
commit e44661aca4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ from ..sessions import sessions_names
@click.option(
"-bgc",
"--bgcolor",
default=None,
default=(0, 0, 0, 0),
type=(int, int, int, int),
nargs=4,
help="Background color (R G B A) to replace the removed background with",

View File

@ -70,7 +70,7 @@ from ..sessions import sessions_names
@click.option(
"-bgc",
"--bgcolor",
default=None,
default=(0, 0, 0, 0),
type=(int, int, int, int),
nargs=4,
help="Background color (R G B A) to replace the removed background with",

View File

@ -83,7 +83,7 @@ from ..sessions import sessions_names
@click.option(
"-bgc",
"--bgcolor",
default=None,
default=(0, 0, 0, 0),
type=(int, int, int, int),
nargs=4,
help="Background color (R G B A) to replace the removed background with",