Convert CPU max temp to int

This commit is contained in:
2Shirt 2020-01-11 20:54:35 -07:00
parent c1f2f0b6d8
commit e9c0855f65
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -327,7 +327,7 @@ class osTicket(): # pylint: disable=invalid-name
return
# Update temp
self._set_flag(FLAG_MAX_TEMP, temp)
self._set_flag(FLAG_MAX_TEMP, int(temp))
# Done
self._disconnect()