Skip to content

Commit

Permalink
Fix #137
Browse files Browse the repository at this point in the history
  • Loading branch information
slashback100 committed Jul 17, 2024
1 parent 43a865f commit df872a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/presence_simulation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def async_setup_entry(hass, entry):

# Add sensor
# Use `hass.async_create_task` to avoid a circular dependency between the platform and the component
hass.async_create_task(hass.config_entries.async_forward_entry_setup(entry, SWITCH_PLATFORM))
hass.async_create_task(hass.config_entries.async_forward_entry_setups(entry, [SWITCH_PLATFORM]))

previous_attribute = {}

Expand Down
2 changes: 1 addition & 1 deletion custom_components/presence_simulation/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"documentation": "https://github.com/slashback100/presence_simulation",
"iot_class": "local_polling",
"issue_tracker": "https://github.com/slashback100/presence_simulation/issues",
"version": "4.9"
"version": "4.10"
}

0 comments on commit df872a2

Please sign in to comment.