Skip to content

Commit

Permalink
fixup dont_prompt (#18974)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Dec 3, 2024
1 parent 5ae3659 commit 9dacf09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chia/cmds/plotnft.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class CreatePlotNFTCMD:
show_default=True,
required=True,
)
dont_prompt: bool = option("-y", "--yes", "dont_prompt", help="No prompts", is_flag=True)
dont_prompt: bool = option("-y", "--yes", help="No prompts", is_flag=True)

async def run(self) -> None:
from chia.cmds.plotnft_funcs import create
Expand Down Expand Up @@ -133,7 +133,7 @@ class JoinPlotNFTCMD:
show_default=True,
required=True,
)
dont_prompt: bool = option("-y", "--yes", "dont_prompt", help="No prompts", is_flag=True)
dont_prompt: bool = option("-y", "--yes", help="No prompts", is_flag=True)
id: Optional[int] = option(
"-i", "--id", help="ID of the wallet to use", default=None, show_default=True, required=False
)
Expand All @@ -160,7 +160,7 @@ async def run(self) -> None:
)
class LeavePlotNFTCMD:
rpc_info: NeedsWalletRPC # provides wallet-rpc-port and fingerprint options
dont_prompt: bool = option("-y", "--yes", "dont_prompt", help="No prompts", is_flag=True)
dont_prompt: bool = option("-y", "--yes", help="No prompts", is_flag=True)
fee: uint64 = option(
"-m",
"--fee",
Expand Down

0 comments on commit 9dacf09

Please sign in to comment.