Skip to content

Commit db72627

Browse files
committed
use older black
1 parent 4cd8b36 commit db72627

File tree

3 files changed

+318
-125
lines changed

3 files changed

+318
-125
lines changed

custom_components/myheat/api.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ def __init__(
3535
session: aiohttp.ClientSession,
3636
) -> None:
3737
"""Sample API Client."""
38-
self._username = username
39-
self._api_key = api_key
40-
self._device_id = device_id
41-
self._session = session
38+
self._username :str= username
39+
self._api_key :str= api_key
40+
self._device_id:int = device_id
41+
self._session :aiohttp.ClientSession= session
4242

4343
async def async_get_devices(self) -> dict:
4444
"""Get available devices"""

0 commit comments

Comments
 (0)