From 247f1fb2fee52119392378dc62f73d40d2d9925f Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 1 Mar 2026 20:53:16 +0100 Subject: [PATCH] Fix data defs in Tripower plugin to stop HA complaining --- plugins/sources/TripowerX/tripowerx.py | 4 ---- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/plugins/sources/TripowerX/tripowerx.py b/plugins/sources/TripowerX/tripowerx.py index db611b5..d77a7b7 100644 --- a/plugins/sources/TripowerX/tripowerx.py +++ b/plugins/sources/TripowerX/tripowerx.py @@ -238,7 +238,6 @@ def execute(config, add_data, dostop): 'key': "GridMs.TotPFExt", 'enabled': "true", 'name': "Excitation type of cos φ", - 'suggested_display_precision': 2, }, { 'key': "GridMs.TotPFPrc", @@ -373,19 +372,16 @@ def execute(config, add_data, dostop): 'key': "Upd.Stt", 'enabled': "true", 'name': "Status of the firmware update", - 'suggested_display_precision': 2, }, { 'key': "WebConn.Stt", 'enabled': "true", 'name': "Status of the Webconnect functionality", - 'suggested_display_precision': 2, }, { 'key': "Wl.ConnStt", 'enabled': "true", 'name': "Wi-Fi connection status", - 'suggested_display_precision': 2, }, { 'key': "Wl.SigPwr", diff --git a/pyproject.toml b/pyproject.toml index cfad11c..049fb2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"] [project] name = "smahub" -version = "1.7.3" +version = "1.7.4" authors = [{ name = "Daniel Krippner", email = "dk.mailbox@gmx.net" }] description = "Little daemon that runs plugins for collecting data from SMA PV products, and publishes to eg MQTT via other plugins." readme = "README.md"