Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump pytest-homeassistant-custom-component from 0.13.91 to 0.13.108 #1111

Merged
6 changes: 2 additions & 4 deletions custom_components/ocpp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,8 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):

hass.data[DOMAIN][entry.entry_id] = central_sys

for platform in PLATFORMS:
hass.async_create_task(
hass.config_entries.async_forward_entry_setup(entry, platform)
)
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
entry.async_on_unload(entry.add_update_listener(async_reload_entry))

return True

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ ocpp==1.0.0
websockets==12.0
jsonschema==4.21.1
pre-commit
pytest-homeassistant-custom-component==0.13.91
pytest-homeassistant-custom-component==0.13.108
setuptools>=65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability
Loading