Reformat.

This commit is contained in:
Felix Fontein 2025-11-14 18:54:02 +01:00
parent 72cdb263d8
commit 6ad4678364

View File

@ -520,7 +520,9 @@ class AnsibleDockerClientBase(Client):
self.fail(f"Error inspecting image ID {image_id} - {exc}")
@staticmethod
def _compare_images(img1: dict[str, t.Any] | None, img2: dict[str, t.Any] | None) -> bool:
def _compare_images(
img1: dict[str, t.Any] | None, img2: dict[str, t.Any] | None
) -> bool:
if img1 is None or img2 is None:
return img1 == img2
filter_keys = {"Metadata"}