diff --git a/src/arise/commands/auth.py b/src/arise/commands/auth.py index 9417ebd..e1942f5 100644 --- a/src/arise/commands/auth.py +++ b/src/arise/commands/auth.py @@ -67,7 +67,7 @@ def auth( write_count += 1 if write_count > 0: outputs.append("[green]Success!") - outputs.append(f"In order to activate authentication, run the following command:") + outputs.append("In order to activate authentication, run the following command:") outputs.append(f" [blue]source { path.expanduser(rc_path) }[reset]") list(map(rich_print, outputs)) diff --git a/src/arise/commands/deploy.py b/src/arise/commands/deploy.py index b4b7ed6..63a331c 100644 --- a/src/arise/commands/deploy.py +++ b/src/arise/commands/deploy.py @@ -87,7 +87,7 @@ def deploy( for key, value in SERVICES.items() if value.service_type == "middleware" and middleware_select[key] ] - for name, middleware in track(middlewares, f"Deploy middleware services".ljust(42)): + for name, middleware in track(middlewares, "Deploy middleware services".ljust(42)): flags: List[str] = list(middleware.command.values()) ports: Dict[str, int] = {p.split(":")[0]: int(p.split(":")[1]) for p in middleware.ports} client.containers.run( @@ -110,7 +110,7 @@ def deploy( for key, value in SERVICES.items() if value.service_type == "peripheral" and peripheral_select[key] ] - for name, peripheral in track(peripherals, f"Deploy peripheral services".ljust(42)): + for name, peripheral in track(peripherals, "Deploy peripheral services".ljust(42)): flags: List[str] = list(peripheral.command.values()) environment: List[str] = peripheral.env_vars if name == "arise-electrs":