mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Add missing return type in test __init__ method (part 2) (#123939)
* Add missing return type in test __init__ method (part 2) * Adjust * One more * One more * More
This commit is contained in:
@@ -189,7 +189,7 @@ async def oauth_fixture(
|
||||
class Client:
|
||||
"""Test client with helper methods for application credentials websocket."""
|
||||
|
||||
def __init__(self, client):
|
||||
def __init__(self, client) -> None:
|
||||
"""Initialize Client."""
|
||||
self.client = client
|
||||
self.id = 0
|
||||
|
||||
Reference in New Issue
Block a user