mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
fix EDict to dict mapping in helpers.py (#3599)
This commit is contained in:
parent
f82b46c16b
commit
435f972357
1 changed files with 1 additions and 1 deletions
|
@ -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,), {}),
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue