Update typing (3) [k-t] (#63924)

This commit is contained in:
Marc Mueller 2022-01-11 21:26:55 +01:00 committed by GitHub
parent bcb93d95bb
commit fa7e787415
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 28 additions and 28 deletions

View file

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