mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	fix EDict to dict mapping in helpers.py (#3599)
This commit is contained in:
		| @@ -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,), {}), | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user