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.
This commit is contained in:
DevTekVE
2024-06-17 17:16:17 +02:00
parent 65edbe4f47
commit 7fcdcf64d8
+1 -1
View File
@@ -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"),