Minor documentation updates
This commit is contained in:
parent
3239c04368
commit
7f7a1f2740
6 changed files with 8 additions and 3 deletions
|
@ -92,7 +92,7 @@ class WinkSensorDevice(Device):
|
|||
|
||||
|
||||
class WinkToggleDevice(ToggleDevice):
|
||||
""" represents a WeMo switch within home assistant. """
|
||||
""" represents a Wink switch within home assistant. """
|
||||
|
||||
def __init__(self, wink):
|
||||
self.wink = wink
|
||||
|
|
|
@ -65,8 +65,6 @@ ATTR_UNIT_OF_MEASUREMENT = "unit_of_measurement"
|
|||
|
||||
# Temperature attribute
|
||||
ATTR_TEMPERATURE = "temperature"
|
||||
|
||||
# #### MISC ####
|
||||
TEMP_CELCIUS = "°C"
|
||||
TEMP_FAHRENHEIT = "°F"
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# Builds the frontend for production
|
||||
# Call 'build_frontend demo' to build a demo frontend.
|
||||
|
||||
# If current pwd is scripts, go 1 up.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# Builds the JS for production
|
||||
|
||||
# If current pwd is scripts, go 1 up.
|
||||
if [ ${PWD##*/} == "scripts" ]; then
|
||||
cd ..
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# Run style checks
|
||||
|
||||
# If current pwd is scripts, go 1 up.
|
||||
if [ ${PWD##*/} == "scripts" ]; then
|
||||
cd ..
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# Builds the JS for developing, rebuilds when files change
|
||||
|
||||
# If current pwd is scripts, go 1 up.
|
||||
if [ ${PWD##*/} == "scripts" ]; then
|
||||
cd ..
|
||||
|
|
Loading…
Add table
Reference in a new issue