From 35dbed0798f4ea38c6aa1c39af9fb360599c9895 Mon Sep 17 00:00:00 2001 From: Sven Sager Date: Thu, 5 Feb 2026 16:23:27 +0100 Subject: [PATCH] refactor(io): Rename `Get` method to `GetIO` in IOManager interface Updated method name in D-Bus interface and backend to do not use the same name as org.freedesktop.DBus.Properties. Som libs will map all methods of a node to an object for direct calling. If the names are the same, you have to filter the interface. Signed-off-by: Sven Sager --- src/revpi_middleware/ios1/interface_ios.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/revpi_middleware/ios1/interface_ios.py b/src/revpi_middleware/ios1/interface_ios.py index 2752a35..2329572 100644 --- a/src/revpi_middleware/ios1/interface_ios.py +++ b/src/revpi_middleware/ios1/interface_ios.py @@ -240,8 +240,8 @@ class InterfaceIoManager: - - + + @@ -291,7 +291,7 @@ class InterfaceIoManager: def GetAllOutputs(self) -> list[str]: return self.lst_out_object_path - def Get(self, io_name) -> str: + def GetIO(self, io_name) -> str: if io_name in self._dc_io_interfaces: return self._dc_io_interfaces[io_name].object_path