Skip to content

Commit

Permalink
Merge pull request #13 from MrFinchMkV/fix/missing_await
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeSG authored Nov 5, 2024
2 parents 2912639 + 00a215a commit 79c3acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/slack_user/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async def async_setup_entry(hass, entry):
"""Set up Slack User Entry."""
for component in COMPONENT_TYPES:
hass.async_create_task(
hass.config_entries.async_forward_entry_setup(entry, component)
await hass.config_entries.async_forward_entry_setup(entry, component)
)

return True

0 comments on commit 79c3acc

Please sign in to comment.