From f536b8967b1bb1c6976eb480704d11165e9de0b3 Mon Sep 17 00:00:00 2001 From: spatterlight Date: Mon, 23 Mar 2026 16:21:21 -0400 Subject: [PATCH] docker_image_export: Add 'platform' option --- plugins/modules/docker_image_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/docker_image_export.py b/plugins/modules/docker_image_export.py index 0c8f9ca2..241d4b6e 100644 --- a/plugins/modules/docker_image_export.py +++ b/plugins/modules/docker_image_export.py @@ -243,7 +243,7 @@ class ImageExportManager(DockerBaseClass): self.fail(f"Error getting image {image_names[0]} - {exc}") else: self.log(f"Getting archive of images {image_names_str}") - params: dict[str, t.Any] = {"names": image_names} + params = {"names": image_names} if self.platform: params["platform"] = self._platform_param() try: