hass_flickerstrip/custom_components/flickerstrip/common.py

11 lines
249 B
Python

from flickerstrip_py import Flickerstrip
from homeassistant.helpers.entity import Entity
class FlickerstripEntity(Entity):
"""Base flickerstrip entity."""
def __init__(self, strip: Flickerstrip):
self.strip: Flickerstrip = strip