Skip to content

Commit 68ef1ee

Browse files
committed
refactor(base_images): Improve formatting of get_base_image_steps function
1 parent 5ba63ea commit 68ef1ee

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

infra/build/functions/base_images.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,11 @@ def get_base_image_steps(images: Sequence[ImageConfig]) -> list[dict]:
188188
tags.append(f'{IMAGE_NAME_PREFIX}{image_config.name}:latest')
189189

190190
dockerfile_path = os.path.join('oss-fuzz', image_config.dockerfile_path)
191-
step = build_lib.get_docker_build_step(tags,
192-
image_config.path,
193-
dockerfile_path=dockerfile_path,
194-
build_args=image_config.build_args)
191+
step = build_lib.get_docker_build_step(
192+
tags,
193+
image_config.path,
194+
dockerfile_path=dockerfile_path,
195+
build_args=image_config.build_args)
195196

196197
# Check for dependencies and add 'waitFor' if necessary.
197198
dependencies = IMAGE_DEPENDENCIES.get(image_config.name, [])

0 commit comments

Comments
 (0)