From cce2641cf035d4e62cf4c094d882d5332669abb7 Mon Sep 17 00:00:00 2001 From: Arjan Bal Date: Fri, 24 May 2024 23:27:56 +0530 Subject: [PATCH] Format using black --- tools/interop_matrix/create_matrix_images.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/interop_matrix/create_matrix_images.py b/tools/interop_matrix/create_matrix_images.py index bfac36c490c..48d37d044b0 100755 --- a/tools/interop_matrix/create_matrix_images.py +++ b/tools/interop_matrix/create_matrix_images.py @@ -411,7 +411,9 @@ for lang in languages: assert image.startswith(args.gcr_path) and image.find(":") != -1 # Add a tag to exclude the image from the GCP Vulnerability Scanner. (image_name, tag_name) = image.rsplit(":", 1) - alternate_image = f"{image_name}:infrastructure-public-image-{tag_name}" + alternate_image = ( + f"{image_name}:infrastructure-public-image-{tag_name}" + ) subprocess.call(["docker", "image", "tag", image, alternate_image]) subprocess.call(["gcloud", "docker", "--", "push", image]) subprocess.call(["gcloud", "docker", "--", "push", alternate_image])