Skip to content

Commit

Permalink
Update sensor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MapoDan authored Jan 9, 2024
1 parent 3f8c161 commit f4aaee9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/file_restore/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async def async_setup_platform(hass, config, async_add_entities,
discovery_info=None):
"""Set up the file sensor."""
_LOGGER.debug("Setup entity coming from configuration.yaml named: %s", config.get(CONF_NAME))
await async_setup_reload_service(hass, DOMAIN, PLATFORM)
await async_setup_reload_service(hass, DOMAIN, [PLATFORM])
async_add_entities([FileSensor(config)], True)

async def async_setup_entry(hass, config_entry, async_add_devices):
Expand All @@ -58,7 +58,7 @@ async def async_setup_entry(hass, config_entry, async_add_devices):
else:
result = config_entry.data
_LOGGER.debug("setup entity-config_entry_data=%s",result)
await async_setup_reload_service(hass, DOMAIN, PLATFORM)
await async_setup_reload_service(hass, DOMAIN, [PLATFORM])
async_add_devices([FileSensor(result)], True)

class FileSensor(Entity):
Expand Down

0 comments on commit f4aaee9

Please sign in to comment.