Skip to content

Commit

Permalink
FIX issue 462, nargs error (#547)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanruihua authored Dec 5, 2023
1 parent 1adb4f1 commit e44661a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rembg/commands/b_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
@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",
Expand Down
2 changes: 1 addition & 1 deletion rembg/commands/i_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
@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",
Expand Down
2 changes: 1 addition & 1 deletion rembg/commands/p_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
@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",
Expand Down

0 comments on commit e44661a

Please sign in to comment.