Add missing return type to some test functions (#119665)
This commit is contained in:
parent
26e21bb356
commit
38a6e666a7
15 changed files with 20 additions and 18 deletions
|
@ -72,7 +72,7 @@ class FakeScanner(BaseHaRemoteScanner):
|
|||
class BaseFakeBleakClient:
|
||||
"""Base class for fake bleak clients."""
|
||||
|
||||
def __init__(self, address_or_ble_device: BLEDevice | str, **kwargs):
|
||||
def __init__(self, address_or_ble_device: BLEDevice | str, **kwargs) -> None:
|
||||
"""Initialize the fake bleak client."""
|
||||
self._device_path = "/dev/test"
|
||||
self._device = address_or_ble_device
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue