Add missing return type in test __init__ methods (#123932)

* Add missing return type in test __init__ methods

* Adjust
This commit is contained in:
epenet 2024-08-14 16:48:52 +02:00 committed by GitHub
parent faacfe3f90
commit 5608301178
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
35 changed files with 64 additions and 47 deletions

View file

@ -92,7 +92,7 @@ class FakeSubscriber(GoogleNestSubscriber):
stop_calls = 0
def __init__(self): # pylint: disable=super-init-not-called
def __init__(self) -> None: # pylint: disable=super-init-not-called
"""Initialize Fake Subscriber."""
self._device_manager = DeviceManager()