From d9ef8372bad54a833abddcf41cc63708afab0af8 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Wed, 15 Oct 2025 21:31:49 +0200 Subject: [PATCH] Fix method signature. --- plugins/module_utils/module_container/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/module_utils/module_container/base.py b/plugins/module_utils/module_container/base.py index 3870dac9..7c96203c 100644 --- a/plugins/module_utils/module_container/base.py +++ b/plugins/module_utils/module_container/base.py @@ -202,7 +202,7 @@ class Engine(object): pass @abc.abstractmethod - def ignore_mismatching_result(self, module, client, api_version, option, image, container_value, expected_value): + def ignore_mismatching_result(self, module, client, api_version, option, image, container_value, expected_value, host_info): pass @abc.abstractmethod