Skip to content

Commit

Permalink
Bump release
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellowlol committed Jan 10, 2022
1 parent 745d801 commit 8495a53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions custom_components/nordpool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
from homeassistant.core import Config, HomeAssistant
from homeassistant.helpers.aiohttp_client import async_get_clientsession
from homeassistant.helpers.dispatcher import async_dispatcher_send
from homeassistant.helpers.event import async_call_later, async_track_time_change
from homeassistant.helpers.event import (async_call_later,
async_track_time_change)
from homeassistant.util import dt as dt_utils
from pytz import timezone

Expand All @@ -28,7 +29,7 @@


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

STARTUP = f"""
Expand Down Expand Up @@ -69,7 +70,7 @@ async def _update(self, type_="today", dt=None):
if data:
self._data[currency][type_] = data["areas"]
else:
_LOGGER.debug("Some crap happend, retrying request later.")
_LOGGER.info("Some crap happend, retrying request later.")
async_call_later(hass, 20, partial(self._update, type_=type_, dt=dt))

async def update_today(self, n: datetime):
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 @@ -10,5 +10,5 @@
"codeowners": ["@hellowlol"],
"iot_class": "cloud_polling",
"requirements": ["nordpool>=0.2"],
"version": "0.0.3"
"version": "0.0.4"
}

0 comments on commit 8495a53

Please sign in to comment.