mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 06:33:51 +00:00 
			
		
		
		
	Fix indentation of write_lambda for modbus_controller number (#2722)
This commit is contained in:
		| @@ -129,14 +129,14 @@ async def to_code(config): | ||||
|             return_type=cg.optional.template(float), | ||||
|         ) | ||||
|         cg.add(var.set_template(template_)) | ||||
|         if CONF_WRITE_LAMBDA in config: | ||||
|             template_ = await cg.process_lambda( | ||||
|                 config[CONF_WRITE_LAMBDA], | ||||
|                 [ | ||||
|                     (ModbusNumber.operator("ptr"), "item"), | ||||
|                     (cg.float_, "x"), | ||||
|                     (cg.std_vector.template(cg.uint16).operator("ref"), "payload"), | ||||
|                 ], | ||||
|                 return_type=cg.optional.template(float), | ||||
|             ) | ||||
|             cg.add(var.set_write_template(template_)) | ||||
|     if CONF_WRITE_LAMBDA in config: | ||||
|         template_ = await cg.process_lambda( | ||||
|             config[CONF_WRITE_LAMBDA], | ||||
|             [ | ||||
|                 (ModbusNumber.operator("ptr"), "item"), | ||||
|                 (cg.float_, "x"), | ||||
|                 (cg.std_vector.template(cg.uint16).operator("ref"), "payload"), | ||||
|             ], | ||||
|             return_type=cg.optional.template(float), | ||||
|         ) | ||||
|         cg.add(var.set_write_template(template_)) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user