1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 20:35:55 +00:00

Migrate to Ruff for lint and format (#4852)

* Migrate to Ruff for lint and format

* Fix pylint issues

* DBus property sets into normal awaitable methods

* Fix tests relying on separate tasks in connect

* Fixes from feedback
This commit is contained in:
Mike Degatano
2024-02-05 11:37:39 -05:00
committed by GitHub
parent 1861d756e9
commit 7fd6dce55f
122 changed files with 694 additions and 668 deletions

View File

@@ -14,7 +14,7 @@ from tests.dbus_service_mocks.systemd import Systemd as SystemdService
@pytest.fixture(name="systemd_service")
async def fixture_systemd_service(
all_dbus_services: dict[str, DBusServiceMock | dict[str, DBusServiceMock]]
all_dbus_services: dict[str, DBusServiceMock | dict[str, DBusServiceMock]],
) -> SystemdService:
"""Return systemd service mock."""
yield all_dbus_services["systemd"]
@@ -39,7 +39,7 @@ async def test_load(coresys: CoreSys, systemd_service: SystemdService):
sound_update.assert_called_once()
assert systemd_service.ListUnits.calls == [tuple()]
assert systemd_service.ListUnits.calls == [()]
async def test_reload(coresys: CoreSys, systemd_service: SystemdService):
@@ -55,4 +55,4 @@ async def test_reload(coresys: CoreSys, systemd_service: SystemdService):
connect.assert_not_called()
sound_update.assert_called_once()
assert systemd_service.ListUnits.calls == [tuple()]
assert systemd_service.ListUnits.calls == [()]