Skip to content

Commit

Permalink
Fix various typos in comments (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctso authored and ludeeus committed Dec 28, 2019
1 parent 0a3a92d commit 48eb57e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion custom_components/blueprint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion custom_components/blueprint/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def unique_id(self):
"""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):
Expand Down
2 changes: 1 addition & 1 deletion custom_components/blueprint/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def unique_id(self):
"""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):
Expand Down
2 changes: 1 addition & 1 deletion custom_components/blueprint/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def unique_id(self):
"""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):
Expand Down

0 comments on commit 48eb57e

Please sign in to comment.