Skip to content

Commit

Permalink
fixup! feat: Support extendable backup flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
matejcik committed May 14, 2024
1 parent 033b6d3 commit 19850e8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion shamir_mnemonic/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ def cli() -> None:
help="Number of groups required for recovery in the custom scheme.",
)
@click.option(
"-x", "--extendable", type=bool, default=True, help="Extendable backup flag."
"-x/-X",
"--extendable/--no-extendable",
is_flag=True,
default=True,
help="Extendable backup flag.",
)
@click.option("-E", "--exponent", type=int, default=0, help="Iteration exponent.")
@click.option(
Expand Down

0 comments on commit 19850e8

Please sign in to comment.