Minor documentation updates

This commit is contained in:
Paulus Schoutsen 2015-02-22 17:33:01 -08:00
parent 9c61c281ca
commit 85f7f5589d
6 changed files with 8 additions and 3 deletions

View file

@ -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

View file

@ -65,8 +65,6 @@ ATTR_UNIT_OF_MEASUREMENT = "unit_of_measurement"
# Temperature attribute
ATTR_TEMPERATURE = "temperature"
# #### MISC ####
TEMP_CELCIUS = "°C"
TEMP_FAHRENHEIT = "°F"

View file

@ -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.

View file

@ -1,3 +1,5 @@
# Builds the JS for production
# If current pwd is scripts, go 1 up.
if [ ${PWD##*/} == "scripts" ]; then
cd ..

View file

@ -1,3 +1,5 @@
# Run style checks
# If current pwd is scripts, go 1 up.
if [ ${PWD##*/} == "scripts" ]; then
cd ..

View file

@ -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 ..