Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ludeeus/integration_blueprint",
"image": "mcr.microsoft.com/devcontainers/python:3.12",
"image": "mcr.microsoft.com/devcontainers/python:3.13",
"postCreateCommand": "scripts/setup",
"forwardPorts": [
8123
Expand Down
4 changes: 3 additions & 1 deletion custom_components/nordpool/aio_price.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,9 @@ async def fetch(self, data_type, end_date=None, areas=None, raw=False):
if raw:
return await self._fetch_json(data_type, today, areas)
jobs = [
self._fetch_json(data_type, yesterday, areas),
self._fetch_json(
data_type, yesterday, areas
), # TODO this is no longer needed, seems like NP api really does return what they should
self._fetch_json(data_type, today, areas),
self._fetch_json(data_type, tomorrow, areas),
]
Expand Down
4 changes: 2 additions & 2 deletions custom_components/nordpool/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
CONFIG_SCHEMA = vol.Schema({DOMAIN: vol.Schema({})}, extra=vol.ALLOW_EXTRA)

NAME = DOMAIN
VERSION = "0.0.17"
VERSION = "0.0.18"
ISSUEURL = "https://github.com/custom-components/nordpool/issues"


Expand Down Expand Up @@ -123,7 +123,7 @@
"BE": ["EUR", "Belgium", 0.06],
"AT": ["EUR", "Austria", 0.20],
# Unsure about tax rate, correct if wrong
"GER": ["EUR", "Germany", 0.19],
"GER": ["EUR", "Germany", 0.19], # <-- this should be fixed.
}

# Needed incase a user wants the prices in non local currency
Expand Down
2 changes: 1 addition & 1 deletion custom_components/nordpool/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"requirements": [
"backoff"
],
"version": "0.0.17"
"version": "0.0.18"
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nordpool==0.4.2
#nordpool==0.4.2
backoff
Empty file modified scripts/dev
100644 → 100755
Empty file.
Empty file modified scripts/setup
100644 → 100755
Empty file.
Loading