Add missing return type in test __init__ methods (#123932)
* Add missing return type in test __init__ methods * Adjust
This commit is contained in:
parent
faacfe3f90
commit
5608301178
35 changed files with 64 additions and 47 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue