mirror of
https://github.com/jdejaegh/irm-kmi-ha.git
synced 2025-06-27 03:35:56 +02:00
10 lines
322 B
Python
10 lines
322 B
Python
"""Data classes for IRM KMI integration"""
|
|
from homeassistant.components.weather import Forecast
|
|
|
|
|
|
class IrmKmiForecast(Forecast):
|
|
"""Forecast class with additional attributes for IRM KMI"""
|
|
|
|
# TODO: add condition_2 as well and evolution to match data from the API?
|
|
text_fr: str | None
|
|
text_nl: str | None
|