Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion homeassistant/components/upb/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ async def async_setup_entry(


class UpbLight(UpbAttachedEntity, LightEntity):
"""Representation of an UPB Light."""
"""Representation of a UPB Light."""

_attr_has_entity_name = True
_attr_name = None

def __init__(self, element, unique_id, upb):
"""Initialize an UpbLight."""
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/upb/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async def async_setup_entry(


class UpbLink(UpbEntity, Scene):
"""Representation of an UPB Link."""
"""Representation of a UPB Link."""

def __init__(self, element, unique_id, upb):
"""Initialize the base of all UPB devices."""
Expand Down