From 7fcdcf64d82471c1029a14d66fe01d2a1ddfe5ba Mon Sep 17 00:00:00 2001 From: DevTekVE Date: Mon, 17 Jun 2024 17:16:17 +0200 Subject: [PATCH] Fix format error in SunnylinkDongleId variable The format of the SunnylinkDongleId variable was incorrect in system manager code. It used a dictionary format instead of a tuple. This commit replaces it back with a tuple appropriately to avoid inconsistencies. --- system/manager/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/manager/manager.py b/system/manager/manager.py index 3155d28da3..1944a05ba6 100755 --- a/system/manager/manager.py +++ b/system/manager/manager.py @@ -107,7 +107,7 @@ def manager_init() -> None: ("OSMDownloadProgress", "{}"), ("SidebarTemperatureOptions", "0"), ("SunnylinkEnabled", "1"), - {"SunnylinkDongleId", f"{UNREGISTERED_SUNNYLINK_DONGLE_ID}"}, + ("SunnylinkDongleId", f"{UNREGISTERED_SUNNYLINK_DONGLE_ID}"), ("CustomDrivingModel", "0"), ("DrivingModelGeneration", "4"), ("LastSunnylinkPingTime", "0"),