From 435f97235769990f6882145f5baa681bd38d2c33 Mon Sep 17 00:00:00 2001 From: Javier Peletier Date: Thu, 30 Jun 2022 11:24:24 +0200 Subject: [PATCH] fix EDict to dict mapping in helpers.py (#3599) --- esphome/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/helpers.py b/esphome/helpers.py index 76158a1bfd..e958aca78e 100644 --- a/esphome/helpers.py +++ b/esphome/helpers.py @@ -296,7 +296,7 @@ _TYPE_OVERLOADS = { int: type("EInt", (int,), {}), float: type("EFloat", (float,), {}), str: type("EStr", (str,), {}), - dict: type("EDict", (str,), {}), + dict: type("EDict", (dict,), {}), list: type("EList", (list,), {}), }