1
0
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:
epenet
2024-08-14 17:59:15 +02:00
committed by GitHub
parent 3322fa0294
commit 3e967700fd
51 changed files with 70 additions and 67 deletions

View File

@@ -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