refactor(dbus): Move D-Bus helper functions to a dedicated file

Consolidated `REVPI_DBUS_*` constants and `extend_interface` function
into `dbus_helper.py` for better modularity and reusability. Updated
imports across modules to reflect this change.
This commit is contained in:
2025-04-19 07:56:17 +02:00
parent 96db211240
commit e756d68556
3 changed files with 26 additions and 25 deletions

View File

@@ -8,7 +8,7 @@ from logging import getLogger
from pydbus.generic import signal
from ..interface_helper import ResetDriverWatchdog
from ..dbus_helper import ResetDriverWatchdog
log = getLogger(__name__)