refactor(dbus): Move ResetDriverWatchdog to process_image_helper.py

The ResetDriverWatchdog class was relocated from dbus_helper.py to a new
helper module, process_image_helper.py, to improve code organization
and maintainability. Updated imports in relevant files to reflect this
change.
This commit is contained in:
2025-04-19 08:13:02 +02:00
parent e756d68556
commit 4c1dc1c9b5
3 changed files with 105 additions and 98 deletions

View File

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