Fix attr spelling error in Nest SDM SensorBase (#64490)

This commit is contained in:
Mick Vleeshouwer 2022-01-19 17:49:52 -08:00 committed by GitHub
parent e9e9852e05
commit 1968257b23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ async def async_setup_sdm_entry(
class SensorBase(SensorEntity):
"""Representation of a dynamically updated Sensor."""
_attr_shoud_poll = False
_attr_should_poll = False
_attr_state_class = SensorStateClass.MEASUREMENT
def __init__(self, device: Device) -> None: