summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index ca9ddcc..58d8291 100644
--- a/main.py
+++ b/main.py
@@ -36,7 +36,7 @@ def main_page():
# paramaterised location of template in 'templates' folder
return render_template(
"main.html",
- actual_temp=boiler.temperature,
+ actual_temp=round(boiler.temperature,2),
target_temp=boiler.target,
forecast_temp=weather.temperature()
)