From 30696de3a5f5de8cf37e1ad7c09181a223a16732 Mon Sep 17 00:00:00 2001 From: Trefor Southwell <48591903+springfall2008@users.noreply.github.com> Date: Sat, 2 Nov 2024 16:16:12 +0000 Subject: [PATCH] Rename p/kWh at add average (#1582) * Rename p/kWh at add average * [pre-commit.ci lite] apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> --- apps/predbat/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/predbat/web.py b/apps/predbat/web.py index a50a89c6..f8424f16 100644 --- a/apps/predbat/web.py +++ b/apps/predbat/web.py @@ -662,7 +662,7 @@ def get_chart(self, chart): {"name": "Import", "data": rates, "opacity": "1.0", "stroke_width": "3", "stroke_curve": "stepline"}, {"name": "Export", "data": rates_export, "opacity": "0.2", "stroke_width": "2", "stroke_curve": "stepline", "chart_type": "area"}, {"name": "Gas", "data": rates_gas, "opacity": "0.2", "stroke_width": "2", "stroke_curve": "stepline", "chart_type": "area"}, - {"name": "p/kWh", "data": cost_pkwh, "opacity": "1.0", "stroke_width": "3", "stroke_curve": "stepline"}, + {"name": "Average p/kWh", "data": cost_pkwh, "opacity": "1.0", "stroke_width": "3", "stroke_curve": "stepline"}, ] text += self.render_chart(series_data, self.base.currency_symbols[1], "Energy Rates", now_str) elif chart == "InDay":