Clean up plum_lightpad (#37077)
parent
7c63cfbbc7
commit
508afd3b90
|
@ -1,4 +1,5 @@
|
||||||
"""Support for Plum Lightpad lights."""
|
"""Support for Plum Lightpad lights."""
|
||||||
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
from typing import Callable, List
|
from typing import Callable, List
|
||||||
|
|
||||||
|
@ -52,7 +53,7 @@ async def async_setup_entry(
|
||||||
setup_entities(device)
|
setup_entities(device)
|
||||||
|
|
||||||
device_web_session = async_get_clientsession(hass, verify_ssl=False)
|
device_web_session = async_get_clientsession(hass, verify_ssl=False)
|
||||||
hass.loop.create_task(
|
asyncio.create_task(
|
||||||
plum.discover(
|
plum.discover(
|
||||||
hass.loop,
|
hass.loop,
|
||||||
loadListener=new_load,
|
loadListener=new_load,
|
||||||
|
|
Loading…
Reference in New Issue