2023-07-26 09:12:39 +02:00

12 lines
242 B
Python

"""Models for PEGELONLINE."""
from typing import TypedDict
from aiopegelonline import CurrentMeasurement
class PegelOnlineData(TypedDict):
"""TypedDict for PEGELONLINE Coordinator Data."""
current_measurement: CurrentMeasurement