From 4cf25bc4acef46503df761e0f66d93b1fb31ce00 Mon Sep 17 00:00:00 2001 From: Thomas Goirand Date: Tue, 17 Mar 2026 09:01:13 +0100 Subject: [PATCH] Missing __init__.py This file indirectly makes Ironic unit test fail. Indeed, Ironic does in ironic/drivers/modules/irmc/power.py: scci = importutils.try_import('scciclient.irmc.scci') Then later: except scci.SCCIClientError as irmc_exception: However, without the __init__.py in pyghmi/redfish/oem/ami, I get import scciclient.irmc.scci failing. Signed-off-by: Thomas Goirand Change-Id: I1f4d8fa5d839641e6d4cafe5f67b882016cb956f --- pyghmi/redfish/oem/ami/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 pyghmi/redfish/oem/ami/__init__.py diff --git a/pyghmi/redfish/oem/ami/__init__.py b/pyghmi/redfish/oem/ami/__init__.py new file mode 100644 index 00000000..e69de29b