Skip to content

Commit

Permalink
Frontend 20210822172723 (#2156)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Aug 22, 2021
1 parent d530dce commit 08e3395
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion custom_components/hacs/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
from homeassistant.helpers import aiohttp_client
from homeassistant.helpers.event import async_call_later

from custom_components.hacs.const import CLIENT_ID, DOMAIN, MINIMUM_HA_VERSION
from custom_components.hacs.const import (
CLIENT_ID,
DOMAIN,
INTEGRATION_VERSION,
MINIMUM_HA_VERSION,
)
from custom_components.hacs.helpers.functions.configuration_schema import (
RELEASE_LIMIT,
hacs_config_option_schema,
Expand Down Expand Up @@ -70,6 +75,7 @@ async def _wait_for_activation(_=None):
self.device = GitHubDeviceAPI(
client_id=CLIENT_ID,
session=aiohttp_client.async_get_clientsession(self.hass),
**{"client_name": f"HACS/{INTEGRATION_VERSION}"},
)
async_call_later(self.hass, 1, _wait_for_activation)
try:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hacs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"aiogithubapi>=21.8.0",
"awesomeversion>=21.2.2",
"backoff>=1.10.0",
"hacs_frontend==20210620205902",
"hacs_frontend==20210822172723",
"queueman==0.5"
],
"version": "0.0.0"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ awesomeversion>=21.2.2
backoff>=1.10.0
bellybutton==0.3.1
colorlog==5.0.1
hacs_frontend==20210620205902
hacs_frontend==20210822172723
pre-commit==2.14.0
PyGithub==1.55
pytest==6.2.4
Expand Down

0 comments on commit 08e3395

Please sign in to comment.