diff --git a/custom_components/blueprint/__init__.py b/custom_components/blueprint/__init__.py index e281e53..4528d63 100644 --- a/custom_components/blueprint/__init__.py +++ b/custom_components/blueprint/__init__.py @@ -79,7 +79,7 @@ CONFIG_SCHEMA = vol.Schema( async def async_setup(hass, config): """Set up this component using YAML.""" if config.get(DOMAIN) is None: - # We get her if the integration is set up using config flow + # We get here if the integration is set up using config flow return True # Print startup message diff --git a/custom_components/blueprint/binary_sensor.py b/custom_components/blueprint/binary_sensor.py index 552995d..b83ba77 100644 --- a/custom_components/blueprint/binary_sensor.py +++ b/custom_components/blueprint/binary_sensor.py @@ -54,7 +54,7 @@ class BlueprintBinarySensor(BinarySensorDevice): """Return a unique ID to use for this binary_sensor.""" return ( "0919a0cd-745c-48fd" - ) # Don't had code this, use something from the device/service. + ) # Don't hard code this, use something from the device/service. @property def device_info(self): diff --git a/custom_components/blueprint/sensor.py b/custom_components/blueprint/sensor.py index 5ea9cdd..ee21f82 100644 --- a/custom_components/blueprint/sensor.py +++ b/custom_components/blueprint/sensor.py @@ -48,7 +48,7 @@ class BlueprintSensor(Entity): """Return a unique ID to use for this sensor.""" return ( "0717a0cd-745c-48fd" - ) # Don't had code this, use something from the device/service. + ) # Don't hard code this, use something from the device/service. @property def device_info(self): diff --git a/custom_components/blueprint/switch.py b/custom_components/blueprint/switch.py index d44c825..c5a058c 100644 --- a/custom_components/blueprint/switch.py +++ b/custom_components/blueprint/switch.py @@ -53,7 +53,7 @@ class BlueprintBinarySwitch(SwitchDevice): """Return a unique ID to use for this switch.""" return ( "0818a0cd-745c-48fd" - ) # Don't had code this, use something from the device/service. + ) # Don't hard code this, use something from the device/service. @property def device_info(self):