mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +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,), {}), | ||||
|     float: type("EFloat", (float,), {}), | ||||
|     str: type("EStr", (str,), {}), | ||||
|     dict: type("EDict", (str,), {}), | ||||
|     dict: type("EDict", (dict,), {}), | ||||
|     list: type("EList", (list,), {}), | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user