Skip to content

Commit 27a815e

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

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

infra/build/functions/base_images.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,10 @@ 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(
192-
tags,
193-
image_config.path,
194-
dockerfile_path=dockerfile_path,
195-
build_args=image_config.build_args)
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)
196195

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

0 commit comments

Comments
 (0)