Remove icon in Random (#103235)

This commit is contained in:
Joost Lekkerkerker 2023-11-02 13:18:13 +01:00 committed by GitHub
parent d18b2d8748
commit a0741c74b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,7 +65,6 @@ async def async_setup_entry(
class RandomSensor(SensorEntity):
"""Representation of a Random number sensor."""
_attr_icon = "mdi:hanger"
_state: int | None = None
def __init__(self, config: Mapping[str, Any], entry_id: str | None = None) -> None: