From 264699a4b5589c816850a64a6422e844c22a6bcf Mon Sep 17 00:00:00 2001 From: Konstantin Deev Date: Sun, 20 Aug 2023 11:50:26 -0500 Subject: [PATCH] ok --- custom_components/eyeonwater/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/eyeonwater/test.py b/custom_components/eyeonwater/test.py index c3d04ca..0fe6c0c 100644 --- a/custom_components/eyeonwater/test.py +++ b/custom_components/eyeonwater/test.py @@ -25,7 +25,7 @@ async def main(): print(f"meter {meter.meter_uuid} info {meter.meter_info}") for d in meter.last_historical_data: - print(str(d["start"]), d["sum"]) + print(str(d["dt"]), d["reading"]) await websession.close()