Skip to content

Commit 2aab33c

Browse files
committed
Ruff format
1 parent f9c6f34 commit 2aab33c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/warnet/main.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
def cli():
2020
pass
2121

22+
2223
@click.command()
2324
def version() -> None:
2425
"""Display the installed version of warnet"""
@@ -28,6 +29,7 @@ def version() -> None:
2829
except importlib.metadata.PackageNotFoundError:
2930
click.echo("warnet version unknown (package not installed)")
3031

32+
3133
cli.add_command(admin)
3234
cli.add_command(auth)
3335
cli.add_command(bitcoin)

src/warnet/project.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,9 @@ def new_internal(directory: Path, from_init=False):
432432
click.secho("\nGenerating custom network...", fg="yellow", bold=True)
433433
custom_network_path = inquirer_create_network(directory)
434434
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+
)
436438
click.echo("Deploy any of these networks by running:")
437439
click.echo(f" warnet deploy {project_path}/networks/<example-network-name>")
438440

0 commit comments

Comments
 (0)