Skip to content

Commit 765be9e

Browse files
committed
Fix typing issue in click decorator
1 parent 77cf395 commit 765be9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stego_lsb/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def steglsb(ctx: click.Context, hide: bool, recover: bool, analyze: bool, input_
6666

6767
@main.command()
6868
@click.option("--input", "-i", "image_path", help="Path to an image")
69-
@click.option("--lsb-count", "-n", default=2, show_default=2, type=int, help="How many LSBs to display")
69+
@click.option("--lsb-count", "-n", default=2, show_default=True, type=int, help="How many LSBs to display")
7070
@click.pass_context
7171
def stegdetect(ctx: click.Context, image_path: str, lsb_count: int) -> None:
7272
"""Shows the n least significant bits of image"""

0 commit comments

Comments
 (0)