Skip to content

Commit e31fd4e

Browse files
authored
Codestyle fix
1 parent 5050411 commit e31fd4e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/dynamic-sidecar/src/simcore_service_dynamic_sidecar/core/docker_compose_utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ async def _write_file_and_run_command(
3232
async def cleanup_containers_and_volumes(
3333
compose_spec: str, settings: DynamicSidecarSettings
3434
) -> None:
35-
command = 'docker-compose --project-name {project} --file "{file_path}" rm --force -v'
35+
command = (
36+
'docker-compose --project-name {project} --file "{file_path}" rm --force -v'
37+
)
3638
result = await _write_file_and_run_command(
3739
settings=settings,
3840
file_content=compose_spec,

0 commit comments

Comments
 (0)