Skip to content

Commit

Permalink
Remove duplicate short option from make_offer command (#17376)
Browse files Browse the repository at this point in the history
Remove duplicate short option
  • Loading branch information
Quexington authored Jan 22, 2024
1 parent 4711c52 commit c0f7fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/cmds/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ def add_token_cmd(wallet_rpc_port: Optional[int], asset_id: str, token_name: str
is_flag=True,
default=False,
)
@click.option("-o", "--override", help="Creates offer without checking for unusual values", is_flag=True, default=False)
@click.option("--override", help="Creates offer without checking for unusual values", is_flag=True, default=False)
def make_offer_cmd(
wallet_rpc_port: Optional[int],
fingerprint: int,
Expand Down

0 comments on commit c0f7fd3

Please sign in to comment.