mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +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,), {}),
|
int: type("EInt", (int,), {}),
|
||||||
float: type("EFloat", (float,), {}),
|
float: type("EFloat", (float,), {}),
|
||||||
str: type("EStr", (str,), {}),
|
str: type("EStr", (str,), {}),
|
||||||
dict: type("EDict", (str,), {}),
|
dict: type("EDict", (dict,), {}),
|
||||||
list: type("EList", (list,), {}),
|
list: type("EList", (list,), {}),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue