@@ -432,24 +432,24 @@ def stop():
432432    "--min-workers" , 
433433    required = False , 
434434    type = int , 
435-     help = ( "Override the configured min worker node count for the cluster." ) ) 
435+     help = "Override the configured min worker node count for the cluster." ) 
436436@click .option ( 
437437    "--max-workers" , 
438438    required = False , 
439439    type = int , 
440-     help = ( "Override the configured max worker node count for the cluster." ) ) 
440+     help = "Override the configured max worker node count for the cluster." ) 
441441@click .option ( 
442442    "--cluster-name" , 
443443    "-n" , 
444444    required = False , 
445445    type = str , 
446-     help = ( "Override the configured cluster name." ) ) 
446+     help = "Override the configured cluster name." ) 
447447@click .option ( 
448448    "--yes" , 
449449    "-y" , 
450450    is_flag = True , 
451451    default = False , 
452-     help = ( "Don't ask for confirmation." ) ) 
452+     help = "Don't ask for confirmation." ) 
453453def  create_or_update (cluster_config_file , min_workers , max_workers , no_restart ,
454454                     restart_only , yes , cluster_name ):
455455    if  restart_only  or  no_restart :
@@ -465,19 +465,19 @@ def create_or_update(cluster_config_file, min_workers, max_workers, no_restart,
465465    "--workers-only" , 
466466    is_flag = True , 
467467    default = False , 
468-     help = ( "Only destroy the workers." ) ) 
468+     help = "Only destroy the workers." ) 
469469@click .option ( 
470470    "--yes" , 
471471    "-y" , 
472472    is_flag = True , 
473473    default = False , 
474-     help = ( "Don't ask for confirmation." ) ) 
474+     help = "Don't ask for confirmation." ) 
475475@click .option ( 
476476    "--cluster-name" , 
477477    "-n" , 
478478    required = False , 
479479    type = str , 
480-     help = ( "Override the configured cluster name." ) ) 
480+     help = "Override the configured cluster name." ) 
481481def  teardown (cluster_config_file , yes , workers_only , cluster_name ):
482482    teardown_cluster (cluster_config_file , yes , workers_only , cluster_name )
483483
@@ -488,17 +488,17 @@ def teardown(cluster_config_file, yes, workers_only, cluster_name):
488488    "--start" , 
489489    is_flag = True , 
490490    default = False , 
491-     help = ( "Start the cluster if needed." ) ) 
491+     help = "Start the cluster if needed." ) 
492492@click .option ( 
493-     "--tmux" , is_flag = True , default = False , help = ( "Run the command in tmux." ) ) 
493+     "--tmux" , is_flag = True , default = False , help = "Run the command in tmux." ) 
494494@click .option ( 
495495    "--cluster-name" , 
496496    "-n" , 
497497    required = False , 
498498    type = str , 
499-     help = ( "Override the configured cluster name." ) ) 
499+     help = "Override the configured cluster name." ) 
500500@click .option ( 
501-     "--new" , "-N" , is_flag = True , help = ( "Force creation of a new screen." ) ) 
501+     "--new" , "-N" , is_flag = True , help = "Force creation of a new screen." ) 
502502def  attach (cluster_config_file , start , tmux , cluster_name , new ):
503503    attach_cluster (cluster_config_file , start , tmux , cluster_name , new )
504504
@@ -512,7 +512,7 @@ def attach(cluster_config_file, start, tmux, cluster_name, new):
512512    "-n" , 
513513    required = False , 
514514    type = str , 
515-     help = ( "Override the configured cluster name." ) ) 
515+     help = "Override the configured cluster name." ) 
516516def  rsync_down (cluster_config_file , source , target , cluster_name ):
517517    rsync (cluster_config_file , source , target , cluster_name , down = True )
518518
@@ -526,7 +526,7 @@ def rsync_down(cluster_config_file, source, target, cluster_name):
526526    "-n" , 
527527    required = False , 
528528    type = str , 
529-     help = ( "Override the configured cluster name." ) ) 
529+     help = "Override the configured cluster name." ) 
530530def  rsync_up (cluster_config_file , source , target , cluster_name ):
531531    rsync (cluster_config_file , source , target , cluster_name , down = False )
532532
@@ -538,27 +538,27 @@ def rsync_up(cluster_config_file, source, target, cluster_name):
538538    "--stop" , 
539539    is_flag = True , 
540540    default = False , 
541-     help = ( "Stop the cluster after the command finishes running." ) ) 
541+     help = "Stop the cluster after the command finishes running." ) 
542542@click .option ( 
543543    "--start" , 
544544    is_flag = True , 
545545    default = False , 
546-     help = ( "Start the cluster if needed." ) ) 
546+     help = "Start the cluster if needed." ) 
547547@click .option ( 
548548    "--screen" , 
549549    is_flag = True , 
550550    default = False , 
551-     help = ( "Run the command in a screen." ) ) 
551+     help = "Run the command in a screen." ) 
552552@click .option ( 
553-     "--tmux" , is_flag = True , default = False , help = ( "Run the command in tmux." ) ) 
553+     "--tmux" , is_flag = True , default = False , help = "Run the command in tmux." ) 
554554@click .option ( 
555555    "--cluster-name" , 
556556    "-n" , 
557557    required = False , 
558558    type = str , 
559-     help = ( "Override the configured cluster name." ) ) 
559+     help = "Override the configured cluster name." ) 
560560@click .option ( 
561-     "--port-forward" , required = False , type = int , help = ( "Port to forward." ) ) 
561+     "--port-forward" , required = False , type = int , help = "Port to forward." ) 
562562def  exec_cmd (cluster_config_file , cmd , screen , tmux , stop , start , cluster_name ,
563563             port_forward ):
564564    assert  not  (screen  and  tmux ), "Can specify only one of `screen` or `tmux`." 
@@ -576,7 +576,7 @@ def exec_cmd(cluster_config_file, cmd, screen, tmux, stop, start, cluster_name,
576576    "-n" , 
577577    required = False , 
578578    type = str , 
579-     help = ( "Override the configured cluster name." ) ) 
579+     help = "Override the configured cluster name." ) 
580580def  get_head_ip (cluster_config_file , cluster_name ):
581581    click .echo (get_head_node_ip (cluster_config_file , cluster_name ))
582582
0 commit comments