From 5fb98295107c8490c3ba56c3c998c4bc2dfeed2e Mon Sep 17 00:00:00 2001 From: suaveolent Date: Tue, 10 Dec 2024 15:51:23 +0100 Subject: [PATCH] version 3.0.0-dev-5 --- custom_components/epex_spot/SourceShell.py | 6 +++--- custom_components/epex_spot/manifest.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/custom_components/epex_spot/SourceShell.py b/custom_components/epex_spot/SourceShell.py index 287bfbf..201127e 100644 --- a/custom_components/epex_spot/SourceShell.py +++ b/custom_components/epex_spot/SourceShell.py @@ -18,11 +18,11 @@ CONF_MARKET_AREA, CONF_SOURCE, CONF_SOURCE_AWATTAR, + CONF_SOURCE_ENERGYFORECAST, CONF_SOURCE_EPEX_SPOT_WEB, CONF_SOURCE_SMARD_DE, CONF_SOURCE_SMARTENERGY, CONF_SOURCE_TIBBER, - CONF_SOURCE_ENERGYFORECAST, CONF_SURCHARGE_ABS, CONF_SURCHARGE_PERC, CONF_TAX, @@ -32,7 +32,7 @@ DEFAULT_TAX, EMPTY_EXTREME_PRICE_INTERVAL_RESP, ) -from .EPEXSpot import SMARD, Awattar, EPEXSpotWeb, Tibber, smartENERGY, Energyforecast +from .EPEXSpot import SMARD, Awattar, Energyforecast, EPEXSpotWeb, Tibber, smartENERGY from .extreme_price_interval import find_extreme_price_interval, get_start_times _LOGGER = logging.getLogger(__name__) @@ -73,7 +73,7 @@ def __init__(self, config_entry: ConfigEntry, session: aiohttp.ClientSession): self._source = Energyforecast.Energyforecast( market_area=config_entry.data[CONF_MARKET_AREA], token=self._config_entry.data[CONF_TOKEN], - session=session + session=session, ) @property diff --git a/custom_components/epex_spot/manifest.json b/custom_components/epex_spot/manifest.json index 9762d91..d150541 100644 --- a/custom_components/epex_spot/manifest.json +++ b/custom_components/epex_spot/manifest.json @@ -8,5 +8,5 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/mampfes/ha_epex_spot/issues", "requirements": ["beautifulsoup4"], - "version": "3.0.0-dev-4" + "version": "3.0.0-dev-5" }