mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 06:33:51 +00:00 
			
		
		
		
	Handle uart.write in json-config endpoint (#4430)
This commit is contained in:
		| @@ -1007,8 +1007,14 @@ class SafeLoaderIgnoreUnknown(yaml.SafeLoader): | ||||
|     def ignore_unknown(self, node): | ||||
|         return f"{node.tag} {node.value}" | ||||
|  | ||||
|     def construct_yaml_binary(self, node) -> str: | ||||
|         return super().construct_yaml_binary(node).decode("ascii") | ||||
|  | ||||
|  | ||||
| SafeLoaderIgnoreUnknown.add_constructor(None, SafeLoaderIgnoreUnknown.ignore_unknown) | ||||
| SafeLoaderIgnoreUnknown.add_constructor( | ||||
|     "tag:yaml.org,2002:binary", SafeLoaderIgnoreUnknown.construct_yaml_binary | ||||
| ) | ||||
|  | ||||
|  | ||||
| class JsonConfigRequestHandler(BaseHandler): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user