Skip to content

Commit 55d1edf

Browse files
authored
Add missing s to async_forward_entry_setup(s)
1 parent 0fbc953 commit 55d1edf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/upsplus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def async_setup_entry(
3838
if not os.path.exists("/dev/i2c-1"):
3939
raise ConfigEntryNotReady("UPS was not found")
4040
await add_services(hass)
41-
await hass.config_entries.async_forward_entry_setup(entry, ["sensor","button","switch"])
41+
await hass.config_entries.async_forward_entry_setups(entry, ["sensor","button","switch"])
4242
return True
4343

4444
async def add_services(hass: HomeAssistant):

0 commit comments

Comments
 (0)