Update typing (3) [k-t] (#63924)
This commit is contained in:
parent
bcb93d95bb
commit
fa7e787415
12 changed files with 28 additions and 28 deletions
|
@ -3,7 +3,7 @@ from __future__ import annotations
|
|||
|
||||
from collections.abc import Callable
|
||||
from dataclasses import dataclass
|
||||
from typing import Dict, TypedDict
|
||||
from typing import TypedDict
|
||||
|
||||
from homeassistant.components.sensor import SensorEntityDescription
|
||||
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
|
||||
|
@ -23,7 +23,7 @@ class KrakenResponseEntry(TypedDict):
|
|||
opening_price: float
|
||||
|
||||
|
||||
KrakenResponse = Dict[str, KrakenResponseEntry]
|
||||
KrakenResponse = dict[str, KrakenResponseEntry]
|
||||
|
||||
|
||||
DEFAULT_SCAN_INTERVAL = 60
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue