mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	Display: fix class inherence in Python script (#6009)
This commit is contained in:
		| @@ -18,8 +18,8 @@ from esphome.core import coroutine_with_priority | |||||||
| IS_PLATFORM_COMPONENT = True | IS_PLATFORM_COMPONENT = True | ||||||
|  |  | ||||||
| display_ns = cg.esphome_ns.namespace("display") | display_ns = cg.esphome_ns.namespace("display") | ||||||
| Display = display_ns.class_("Display") | Display = display_ns.class_("Display", cg.PollingComponent) | ||||||
| DisplayBuffer = display_ns.class_("DisplayBuffer") | DisplayBuffer = display_ns.class_("DisplayBuffer", Display) | ||||||
| DisplayPage = display_ns.class_("DisplayPage") | DisplayPage = display_ns.class_("DisplayPage") | ||||||
| DisplayPagePtr = DisplayPage.operator("ptr") | DisplayPagePtr = DisplayPage.operator("ptr") | ||||||
| DisplayRef = Display.operator("ref") | DisplayRef = Display.operator("ref") | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user