From 970a7f96624ee379ffd39c8e61bdf5556999facb Mon Sep 17 00:00:00 2001 From: Oxan van Leeuwen Date: Fri, 10 Sep 2021 09:46:21 +0200 Subject: [PATCH] Fix compounds in sensor device class comments (#55900) --- homeassistant/components/sensor/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/sensor/__init__.py b/homeassistant/components/sensor/__init__.py index 530b0f39c23..9c77c33a29c 100644 --- a/homeassistant/components/sensor/__init__.py +++ b/homeassistant/components/sensor/__init__.py @@ -77,8 +77,8 @@ DEVICE_CLASSES: Final[list[str]] = [ DEVICE_CLASS_MONETARY, # Amount of money (currency) DEVICE_CLASS_OZONE, # Amount of O3 (µg/m³) DEVICE_CLASS_NITROGEN_DIOXIDE, # Amount of NO2 (µg/m³) - DEVICE_CLASS_NITROUS_OXIDE, # Amount of NO (µg/m³) - DEVICE_CLASS_NITROGEN_MONOXIDE, # Amount of N2O (µg/m³) + DEVICE_CLASS_NITROUS_OXIDE, # Amount of N2O (µg/m³) + DEVICE_CLASS_NITROGEN_MONOXIDE, # Amount of NO (µg/m³) DEVICE_CLASS_PM1, # Particulate matter <= 0.1 μm (µg/m³) DEVICE_CLASS_PM10, # Particulate matter <= 10 μm (µg/m³) DEVICE_CLASS_PM25, # Particulate matter <= 2.5 μm (µg/m³)