Skip to content

Commit

Permalink
black stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
justinengland committed May 6, 2021
1 parent 0f2af01 commit 3bfb6a7
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions chia/cmds/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@ def configure(


@click.command("configure", short_help="Modify configuration")
@click.option("--testnet", "-t", help="configures for connection to testnet",
type=click.Choice(["true", "t", "false", "f"]))
@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)
@click.option(
Expand All @@ -123,5 +124,12 @@ 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,
testnet)
configure(
ctx.obj["root_path"],
set_farmer_peer,
set_node_introducer,
set_fullnode_port,
set_log_level,
enable_upnp,
testnet,
)

0 comments on commit 3bfb6a7

Please sign in to comment.