Skip to content

Commit

Permalink
chore: Remove extraneous prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
aekasitt committed Dec 7, 2024
1 parent dd2bd91 commit d4b4c66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/arise/commands/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down
4 changes: 2 additions & 2 deletions src/arise/commands/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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":
Expand Down

0 comments on commit d4b4c66

Please sign in to comment.