diff options
Diffstat (limited to 'klippy/extras')
-rw-r--r-- | klippy/extras/temperature_host.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/temperature_host.py b/klippy/extras/temperature_host.py index 6097dbe2..f72336c5 100644 --- a/klippy/extras/temperature_host.py +++ b/klippy/extras/temperature_host.py @@ -75,7 +75,7 @@ class Temperature_HOST: def get_status(self, eventtime): return { - 'temperature': self.temp, + 'temperature': round(self.temp, 2), } |