This change includes the BusProvider import in the `__init__.py` file of dbus_middleware1. It ensures the module has access to BusProvider functionality, improving modularity and readiness for use.
9 lines
309 B
Python
9 lines
309 B
Python
# -*- coding: utf-8 -*-
|
|
# SPDX-FileCopyrightText: 2025 KUNBUS GmbH
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
"""D-Bus middleware version 1 of revpi_middleware."""
|
|
from .dbus_helper import REVPI_DBUS_BASE_PATH, REVPI_DBUS_NAME
|
|
from .dbus_helper import extend_interface
|
|
|
|
from .bus_provider import BusProvider
|