Commit a2d957e9 authored by Will Bendick's avatar Will Bendick
Browse files

adds explicit default

parent a9f868b2
Showing with 3 additions and 1 deletion
+3 -1
......@@ -75,7 +75,9 @@ def get_transactions_cmd(wallet_rpc_port: int, fingerprint: int, id: int, offset
required=True,
)
@click.option("-t", "--address", help="Address to send the XCH", type=str, required=True)
@click.option("-c", "--confirm", help="Submits transaction without checking for unusual values", is_flag=True)
@click.option(
"-c", "--confirm", help="Submits transaction without checking for unusual values", is_flag=True, default=False
)
def send_cmd(
wallet_rpc_port: int, fingerprint: int, id: int, amount: str, fee: str, address: str, confirm: bool
) -> None:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment