nkgilley / python-ecobee-api

Python API for controlling Ecobee Thermostats
MIT License
44 stars 40 forks source link

type temp input as floats to support tenths precision #69

Closed bjpetit closed 2 years ago

bjpetit commented 3 years ago

Home Assistant is using tenths precision to represent temperatures. When set_hold _temp, et al., are called, the parameter type for the set temps implies that an int should be passed in, when a float will be honored up to the tenths precision. Updating the temp input to set the type hint to float.