File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 19
19
def cli ():
20
20
pass
21
21
22
+
22
23
@click .command ()
23
24
def version () -> None :
24
25
"""Display the installed version of warnet"""
@@ -28,6 +29,7 @@ def version() -> None:
28
29
except importlib .metadata .PackageNotFoundError :
29
30
click .echo ("warnet version unknown (package not installed)" )
30
31
32
+
31
33
cli .add_command (admin )
32
34
cli .add_command (auth )
33
35
cli .add_command (bitcoin )
Original file line number Diff line number Diff line change @@ -432,7 +432,9 @@ def new_internal(directory: Path, from_init=False):
432
432
click .secho ("\n Generating custom network..." , fg = "yellow" , bold = True )
433
433
custom_network_path = inquirer_create_network (directory )
434
434
else :
435
- click .echo (f"No custom network specified, see example network files in { project_path } /networks/" )
435
+ click .echo (
436
+ f"No custom network specified, see example network files in { project_path } /networks/"
437
+ )
436
438
click .echo ("Deploy any of these networks by running:" )
437
439
click .echo (f" warnet deploy { project_path } /networks/<example-network-name>" )
438
440
You can’t perform that action at this time.
0 commit comments