Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
justinengland committed May 6, 2021
1 parent 717f5dd commit b8b7f91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chia/cmds/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def configure(


@click.command("configure", short_help="Modify configuration")
@click.option("--testnet", "-t", help="configures for connection to testnet", \
@click.option("--testnet", "-t", help="configures for connection to testnet",
type=click.Choice(["true", "t", "false", "f"]))
@click.option("--set-node-introducer", help="Set the introducer for node - IP:Port", type=str)
@click.option("--set-farmer-peer", help="Set the farmer peer for harvester - IP:Port", type=str)
Expand All @@ -123,5 +123,5 @@ def configure(
)
@click.pass_context
def configure_cmd(ctx, set_farmer_peer, set_node_introducer, set_fullnode_port, set_log_level, enable_upnp, testnet):
configure(ctx.obj["root_path"], set_farmer_peer, set_node_introducer, set_fullnode_port, set_log_level, enable_upnp, \
configure(ctx.obj["root_path"], set_farmer_peer, set_node_introducer, set_fullnode_port, set_log_level, enable_upnp,
testnet)

0 comments on commit b8b7f91

Please sign in to comment.