Skip to content

Commit

Permalink
Merge pull request #181 from suaveolent/dev
Browse files Browse the repository at this point in the history
version 3.0.0-dev-5
  • Loading branch information
suaveolent authored Dec 10, 2024
2 parents 4544457 + 5fb9829 commit a02788e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions custom_components/epex_spot/SourceShell.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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__)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion custom_components/epex_spot/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit a02788e

Please sign in to comment.