From 683d3ae9583a45c20f508e91dea0fff6211335ae Mon Sep 17 00:00:00 2001 From: gitolicious Date: Mon, 27 May 2019 20:53:14 +0200 Subject: [PATCH] convert to list Co-Authored-By: Otto Winter --- esphome/storage_json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/storage_json.py b/esphome/storage_json.py index 8d55f7b770..305201ccb1 100644 --- a/esphome/storage_json.py +++ b/esphome/storage_json.py @@ -102,7 +102,7 @@ class StorageJSON(object): board=esph.board, build_path=esph.build_path, firmware_bin_path=esph.firmware_bin, - loaded_integrations=esph.loaded_integrations, + loaded_integrations=list(esph.loaded_integrations), ) @staticmethod