Skip to content

Commit

Permalink
Addressing review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWoodard committed Nov 21, 2024
1 parent 1d9c948 commit 8f6f1b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devservices/commands/up.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def up(args: Namespace) -> None:
)
with Status() as status:
try:
remote_dependencies_to_bring_down = install_and_verify_dependencies(
remote_dependencies = install_and_verify_dependencies(
service, mode=running_mode
)
except DependencyError as de:
Expand All @@ -93,7 +93,7 @@ def up(args: Namespace) -> None:
current_env = os.environ.copy()
running_mode_dependencies = modes[running_mode]
remote_dependencies_to_bring_down = get_non_shared_remote_dependencies(
service, remote_dependencies_to_bring_down
service, remote_dependencies
)
down_docker_compose_commands = get_docker_compose_commands_to_run(
service=service,
Expand Down

0 comments on commit 8f6f1b1

Please sign in to comment.